From 39e662ccfbe62ae77d458159d192816171a22f43 Mon Sep 17 00:00:00 2001 From: root Date: Thu, 22 Mar 2012 00:01:28 +0000 Subject: Thu Mar 22 00:01:28 UTC 2012 --- community/agave/PKGBUILD | 39 ++++++------- community/agave/agave.install | 10 ++-- community/agave/drop-libgnome.patch | 66 ++++++++++++++++++++++ community/deja-dup/PKGBUILD | 32 +++++++++++ community/deja-dup/deja-dup.install | 12 ++++ community/lrzip/PKGBUILD | 8 +-- community/mc/PKGBUILD | 7 +-- community/me-tv/PKGBUILD | 10 ++-- community/minitube/PKGBUILD | 24 ++++++++ community/minitube/minitube.install | 11 ++++ community/mongodb/PKGBUILD | 14 ++--- community/nautilus-sound-converter/PKGBUILD | 35 ++++++++++++ .../nautilus-sound-converter.install | 17 ++++++ community/percona-server/PKGBUILD | 5 +- community/raul/PKGBUILD | 24 ++++---- community/raul/raul-0.8.0-ldconfig.patch | 10 ++++ community/soundkonverter/PKGBUILD | 43 +++++++------- 17 files changed, 288 insertions(+), 79 deletions(-) create mode 100644 community/agave/drop-libgnome.patch create mode 100644 community/deja-dup/PKGBUILD create mode 100644 community/deja-dup/deja-dup.install create mode 100644 community/minitube/PKGBUILD create mode 100644 community/minitube/minitube.install create mode 100644 community/nautilus-sound-converter/PKGBUILD create mode 100644 community/nautilus-sound-converter/nautilus-sound-converter.install create mode 100644 community/raul/raul-0.8.0-ldconfig.patch (limited to 'community') diff --git a/community/agave/PKGBUILD b/community/agave/PKGBUILD index ebee489f0..458e721c6 100644 --- a/community/agave/PKGBUILD +++ b/community/agave/PKGBUILD @@ -1,45 +1,42 @@ -# $Id: PKGBUILD 66590 2012-02-26 13:20:19Z lfleischer $ -# Maintainer: Angel 'angvp' Velasquez +# $Id: PKGBUILD 68265 2012-03-20 22:39:06Z bgyorgy $ +# Maintainer: Balló György +# Contributor: Angel 'angvp' Velasquez # Contributor: Roman Kyrylych # Contributor: William Rea pkgname=agave pkgver=0.4.7 -pkgrel=3 -pkgdesc="An colorscheme designer for the Gnome desktop" +pkgrel=4 +pkgdesc="Colorscheme designer tool for GNOME" arch=('i686' 'x86_64') -url="http://home.gna.org/colorscheme" +url="http://home.gna.org/colorscheme/" license=('GPL') -depends=('gtkmm' 'libgnomeui' 'libglademm' 'gconfmm>=2.18.1' 'hicolor-icon-theme') -makedepends=('intltool' 'boost' 'gnome-doc-utils>=0.11.2') -install=agave.install +depends=('libglademm' 'gconfmm' 'hicolor-icon-theme' 'xdg-utils') +makedepends=('gnome-doc-utils' 'intltool' 'boost') +install=$pkgname.install source=("http://download.gna.org/colorscheme/releases/$pkgname-$pkgver.tar.bz2" agave-0.4.7-mdv-fix-str-fmt.patch - schemebox.patch) + schemebox.patch + drop-libgnome.patch) md5sums=('93097881f28dcae1eca2800a763f77c3' 'd96ddfe751d8fd4d13a443b94fafb0b6' - 'c41adfd52ecbf837f4338e67693640fc') + 'c41adfd52ecbf837f4338e67693640fc' + '7419d23329f847dcde12baa467b52135') build() { cd "$srcdir/$pkgname-$pkgver" - patch -Np1 -i "$srcdir/agave-0.4.7-mdv-fix-str-fmt.patch" # Fedora patch patch -Np1 -i "$srcdir/schemebox.patch" # gcs-schemebox patch + patch -Np1 -i "$srcdir/drop-libgnome.patch" - ./configure --prefix=/usr --sysconfdir=/etc --localstatedir=/var --disable-scrollkeeper + ./configure --prefix=/usr --sysconfdir=/etc --localstatedir=/var \ + --disable-scrollkeeper --disable-gnome --disable-schemas-install \ + --with-gconf-schema-file-dir=/usr/share/gconf/schemas make } package() { cd "$srcdir/$pkgname-$pkgver" - make GCONF_DISABLE_MAKEFILE_SCHEMA_INSTALL=1 DESTDIR="$pkgdir" install - - mkdir -p "$pkgdir/usr/share/gconf/schemas" - gconf-merge-schema "$pkgdir/usr/share/gconf/schemas/$pkgname.schemas" \ - "$pkgdir/etc/gconf/schemas"/*.schemas - rm -rf "$pkgdir/usr/etc" - - sed -i "s/agave-icon.png/agave.png/" "$pkgdir/usr/share/applications/agave.desktop" - rm -f "${pkgdir}/etc/gconf/schemas"/*.schemas + make DESTDIR="$pkgdir" install } diff --git a/community/agave/agave.install b/community/agave/agave.install index 41343c50b..cb851dbc3 100644 --- a/community/agave/agave.install +++ b/community/agave/agave.install @@ -1,9 +1,8 @@ pkgname=agave post_install() { - usr/sbin/gconfpkg --install ${pkgname} - gtk-update-icon-cache -q -t -f usr/share/icons/hicolor - update-desktop-database -q + gconfpkg --install ${pkgname} + xdg-icon-resource forceupdate } pre_upgrade() { @@ -15,10 +14,9 @@ post_upgrade() { } pre_remove() { - usr/sbin/gconfpkg --uninstall ${pkgname} + gconfpkg --uninstall ${pkgname} } post_remove() { - gtk-update-icon-cache -q -t -f usr/share/icons/hicolor - update-desktop-database -q + xdg-icon-resource forceupdate } diff --git a/community/agave/drop-libgnome.patch b/community/agave/drop-libgnome.patch new file mode 100644 index 000000000..5dd704e34 --- /dev/null +++ b/community/agave/drop-libgnome.patch @@ -0,0 +1,66 @@ +diff -Naur agave-0.4.4.orig/src/dialogs/gcs-about-window.cc agave-0.4.4/src/dialogs/gcs-about-window.cc +--- agave-0.4.4.orig/src/dialogs/gcs-about-window.cc 2007-11-02 04:16:16.000000000 +0100 ++++ agave-0.4.4/src/dialogs/gcs-about-window.cc 2012-03-20 22:01:55.835021376 +0100 +@@ -26,9 +26,6 @@ + #include // for strlen() + + #include +-#ifdef HAVE_GNOME +-#include +-#endif // HAVE_GNOME + + #include + +@@ -46,11 +43,8 @@ + { + set_name(PACKAGE_NAME); + +-#ifdef HAVE_GNOME +- set_url_hook(sigc::mem_fun(*this, &AboutWindow::on_link_clicked)); + set_website(PACKAGE_WEBSITE); + set_website_label(_("Project Website")); +-#endif // HAVE_GNOME + + Glib::ustring version(PACKAGE_VERSION); + set_version(version); +@@ -112,15 +106,6 @@ + + + void +- AboutWindow::on_link_clicked(Gtk::AboutDialog& dialog, +- const Glib::ustring& link) +- { +-#ifdef HAVE_GNOME +- gnome_url_show(link.c_str(), 0); +-#endif // HAVE_GNOME +- } +- +- void + AboutWindow::on_response(int response_id) + { + if (response_id == Gtk::RESPONSE_DELETE_EVENT || +diff -Naur agave-0.4.4.orig/src/gcs-mainwindow-actions.cc agave-0.4.4/src/gcs-mainwindow-actions.cc +--- agave-0.4.4.orig/src/gcs-mainwindow-actions.cc 2007-11-02 04:01:16.000000000 +0100 ++++ agave-0.4.4/src/gcs-mainwindow-actions.cc 2012-03-20 22:01:10.637760066 +0100 +@@ -25,7 +25,6 @@ + + #include + #include +-#include + #include + #include + #include +@@ -251,9 +250,10 @@ + /* Help Menu Actions */ + void MainWindow::on_action_help_contents(void) + { +- gnome_help_display("agave.xml", +- NULL /* link id */, +- NULL /* GError */); ++ gtk_show_uri (NULL, ++ "ghelp:agave", ++ gtk_get_current_event_time (), ++ NULL); + } + + diff --git a/community/deja-dup/PKGBUILD b/community/deja-dup/PKGBUILD new file mode 100644 index 000000000..f46b20b60 --- /dev/null +++ b/community/deja-dup/PKGBUILD @@ -0,0 +1,32 @@ +# $Id: PKGBUILD 68245 2012-03-20 16:27:46Z bgyorgy $ +# Maintainer: Balló György + +pkgname=deja-dup +pkgver=20.2 +pkgrel=3 +pkgdesc="Simple backup tool, that hides the complexity of backing up the Right Way and uses duplicity as the backend" +arch=('i686' 'x86_64') +url="https://launchpad.net/deja-dup" +license=('GPL') +depends=('duplicity' 'gtk3' 'libgnome-keyring' 'libnotify' 'dconf' 'hicolor-icon-theme' 'xdg-utils') +makedepends=('vala' 'intltool' 'itstool' 'nautilus') +optdepends=('nautilus: backup extension') +options=('!libtool') +install=$pkgname.install +source=(http://launchpad.net/$pkgname/20/$pkgver/+download/$pkgname-$pkgver.tar.bz2) +md5sums=('678530be84f00af19c837f134613af21') + +build() { + cd "$srcdir/$pkgname-$pkgver" + sed -i 's/\"python\"/\"python2\"/' common/PythonChecker.c + + ./configure --prefix=/usr --sysconfdir=/etc --localstatedir=/var --libexecdir=/usr/lib/$pkgname \ + --disable-static --disable-schemas-compile --without-unity + make +} + +package() { + cd "$srcdir/$pkgname-$pkgver" + + make DESTDIR="$pkgdir/" install +} diff --git a/community/deja-dup/deja-dup.install b/community/deja-dup/deja-dup.install new file mode 100644 index 000000000..6ce7836d2 --- /dev/null +++ b/community/deja-dup/deja-dup.install @@ -0,0 +1,12 @@ +post_install() { + glib-compile-schemas usr/share/glib-2.0/schemas + xdg-icon-resource forceupdate +} + +post_upgrade() { + post_install $1 +} + +post_remove() { + post_install $1 +} diff --git a/community/lrzip/PKGBUILD b/community/lrzip/PKGBUILD index b6674b0e1..ced3afecb 100644 --- a/community/lrzip/PKGBUILD +++ b/community/lrzip/PKGBUILD @@ -1,19 +1,19 @@ -# $Id: PKGBUILD 68229 2012-03-19 18:33:11Z arodseth $ +# $Id: PKGBUILD 68263 2012-03-20 22:36:38Z arodseth $ # Maintainer: Alexander Rødseth # Contributor: graysky # Contributor: kastor@fobos.org.ar pkgname=lrzip pkgver=0.612 -pkgrel=2 +pkgrel=3 pkgdesc="Multi-threaded compression using the rzip/lzma, lzo, and zpaq algorithms" url="http://lrzip.kolivas.org/" license=('GPL') -arch=('i686' 'x86_64') +arch=('x86_64' 'i686') depends=('lzo2' 'bzip2' 'zlib' 'bash' 'gcc-libs') if [ "$CARCH" != "x86_64" ] then - depends+=('nasm') + makedepends+=('nasm') _flag="--enable-asm" fi options=('!libtool') diff --git a/community/mc/PKGBUILD b/community/mc/PKGBUILD index fa0c71344..2f3253f55 100644 --- a/community/mc/PKGBUILD +++ b/community/mc/PKGBUILD @@ -1,9 +1,9 @@ -# $Id: PKGBUILD 60621 2011-12-15 18:20:41Z schuay $ +# $Id: PKGBUILD 68243 2012-03-20 16:04:03Z schuay $ # Contributor: Daniel J Griffiths # Maintainer: schuay pkgname=mc -pkgver=4.8.1 +pkgver=4.8.2 pkgrel=1 pkgdesc="Midnight Commander is a text based filemanager/shell that emulates Norton Commander" arch=('i686' 'x86_64') @@ -55,5 +55,4 @@ package() { -i "${pkgdir}/usr/lib/mc/extfs.d/s3+" } -md5sums=('7d60c87d87b359831d976fa28034935e') -sha1sums=('8a38468d11f9366b60615043554e71f87ee3cd56') +md5sums=('54eba7680f3e24fbdb8d83e2cde9eca3') diff --git a/community/me-tv/PKGBUILD b/community/me-tv/PKGBUILD index 46de5ec1b..d269c786b 100644 --- a/community/me-tv/PKGBUILD +++ b/community/me-tv/PKGBUILD @@ -5,7 +5,7 @@ #Previous Contributor: Jeff Bailes pkgname=me-tv -pkgver=1.3.6 +pkgver=1.4.0.7 pkgrel=1 epoch=1 pkgdesc="A GTK desktop application for watching digital television services that use the DVB standard" @@ -13,15 +13,16 @@ arch=('i686' 'x86_64') url="https://launchpad.net/me-tv" license=('GPL') depends=('glibmm' 'gtkmm' 'gconfmm' 'glib2' 'xine-lib' 'sqlite3' 'linuxtv-dvb-apps' 'libunique' 'libxml++' 'vlc' 'gstreamer0.10-base') -makedepends=('intltool') +makedepends=('intltool' 'gnome-common') install='me-tv.install' -source=("http://launchpad.net/${pkgname}/${pkgver:0:3}/${pkgver}/+download/${pkgname}-${pkgver}.tar.gz") +source=("http://launchpad.net/${pkgname}/${pkgver:0:3}/${pkgver:0:5}/+download/${pkgname}-${pkgver}.tar.gz") options=('!emptydirs') build() { cd "${srcdir}/${pkgname}-${pkgver}" + ./autogen.sh ./configure CXXFLAGS="$CXXFLAGS -D__KERNEL_STRICT_NAMES" --prefix=/usr make @@ -40,4 +41,5 @@ package() { rm -rf "${pkgdir}/usr/etc/" } -md5sums=('948a6957c3cd268717e139046269c410') + +md5sums=('1f7e10b063b869afcb00c6570061c1ef') diff --git a/community/minitube/PKGBUILD b/community/minitube/PKGBUILD new file mode 100644 index 000000000..4cdeafce2 --- /dev/null +++ b/community/minitube/PKGBUILD @@ -0,0 +1,24 @@ +# $Id: PKGBUILD 68258 2012-03-20 19:50:34Z andrea $ +# Maintainer: Andrea Scarpino + +pkgname=minitube +pkgver=1.7.1 +pkgrel=3 +pkgdesc="A native YouTube client in QT. Watch YouTube videos without Flash Player" +arch=('i686' 'x86_64') +url='http://flavio.tordini.org/minitube' +license=('GPL') +depends=('phonon') +install="${pkgname}.install" +source=("http://flavio.tordini.org/files/${pkgname}/${pkgname}-${pkgver}.tar.gz") +md5sums=('ce336b8cca8294f85d8e34b6a7828e38') + +build() { + cd "${srcdir}"/${pkgname} + qmake +} + +package() { + cd "${srcdir}"/${pkgname} + make install INSTALL_ROOT="${pkgdir}" +} diff --git a/community/minitube/minitube.install b/community/minitube/minitube.install new file mode 100644 index 000000000..1c0de2e4f --- /dev/null +++ b/community/minitube/minitube.install @@ -0,0 +1,11 @@ +post_install() { + xdg-icon-resource forceupdate --theme hicolor &> /dev/null +} + +post_upgrade() { + post_install +} + +post_remove() { + post_install +} diff --git a/community/mongodb/PKGBUILD b/community/mongodb/PKGBUILD index 5bd9cac00..9b84c6b69 100644 --- a/community/mongodb/PKGBUILD +++ b/community/mongodb/PKGBUILD @@ -1,11 +1,11 @@ -# $Id: PKGBUILD 67194 2012-03-05 08:58:08Z ibiru $ +# $Id: PKGBUILD 68267 2012-03-21 01:53:53Z tdziedzic $ # Maintainer: Thomas Dziedzic < gostrc at gmail > # Contributor: Mathias Stearn # Contributor: Alec Thomas pkgname=mongodb -pkgver=2.0.3 -pkgrel=2 +pkgver=2.0.4 +pkgrel=1 pkgdesc='A high-performance, open source, schema-free document-oriented database.' arch=('i686' 'x86_64') url='http://www.mongodb.org' @@ -19,7 +19,7 @@ install="mongodb.install" source=("http://downloads.mongodb.org/src/mongodb-src-r${pkgver}.tar.gz" 'mongodb.rc' 'mongodb.conf') -md5sums=('f588cae93196b94599ec50e3c4956592' +md5sums=('099bc701a3d190a040123c58958e8f67' '9c67e00f4626ad761a8f7d4e037a54d7' '4839fe1d638187ca3226e8267b947318') @@ -29,9 +29,9 @@ build() { cd mongodb-src-r${pkgver} # fix python name for smoke tests - sed \ - -e 's/python/&2/' \ - -i SConstruct + #sed \ + # -e 's/python/&2/' \ + # -i SConstruct scons \ all \ diff --git a/community/nautilus-sound-converter/PKGBUILD b/community/nautilus-sound-converter/PKGBUILD new file mode 100644 index 000000000..97e6b3257 --- /dev/null +++ b/community/nautilus-sound-converter/PKGBUILD @@ -0,0 +1,35 @@ +# $Id: PKGBUILD 68256 2012-03-20 19:47:24Z bgyorgy $ +# Maintainer: Balló György + +pkgname=nautilus-sound-converter +pkgver=3.0.1 +pkgrel=3 +pkgdesc="Nautilus extension to convert audio files formats" +arch=('i686' 'x86_64') +url="http://code.google.com/p/nautilus-sound-converter/" +license=('GPL') +depends=('nautilus' 'libgnome-media-profiles') +makedepends=('intltool') +optdepends=('gstreamer0.10-good-plugins: Extra media codecs' + 'gstreamer0.10-ugly-plugins: Extra media codecs' + 'gstreamer0.10-bad-plugins: Extra media codecs' + 'gstreamer0.10-ffmpeg: Extra media codecs') +options=('!libtool') +install=$pkgname.install +source=(http://nautilus-sound-converter.googlecode.com/files/$pkgname-$pkgver.tar.xz) +sha1sums=('5319fab3b74df43b8e7c293dfdf88b754d3e9db9') + +build() { + cd "$srcdir/$pkgname-$pkgver" + + ./configure --prefix=/usr --sysconfdir=/etc --localstatedir=/var \ + --disable-static --disable-schemas-install \ + --with-gconf-schema-file-dir=/usr/share/gconf/schemas + make +} + +package() { + cd "$srcdir/$pkgname-$pkgver" + + make DESTDIR="$pkgdir/" install +} diff --git a/community/nautilus-sound-converter/nautilus-sound-converter.install b/community/nautilus-sound-converter/nautilus-sound-converter.install new file mode 100644 index 000000000..d2da24898 --- /dev/null +++ b/community/nautilus-sound-converter/nautilus-sound-converter.install @@ -0,0 +1,17 @@ +pkgname=nautilus-sound-converter + +post_install() { + gconfpkg --install $pkgname +} + +pre_upgrade() { + pre_remove $1 +} + +post_upgrade() { + post_install $1 +} + +pre_remove() { + gconfpkg --uninstall $pkgname +} diff --git a/community/percona-server/PKGBUILD b/community/percona-server/PKGBUILD index 1523e8653..476adeef8 100644 --- a/community/percona-server/PKGBUILD +++ b/community/percona-server/PKGBUILD @@ -1,7 +1,8 @@ +# $Id: PKGBUILD 68238 2012-03-20 13:04:11Z mtorromeo $ # Maintainer: Massimiliano Torromeo pkgname=percona-server -pkgver=5.5.20_rel24.1 +pkgver=5.5.21_rel25.0 pkgrel=1 pkgdesc="A backwards-compatible drop-in replacement for MySQL that provides improved performance, diagnostics and instrumentation, and manageability of the server" arch=('i686' 'x86_64') @@ -98,6 +99,6 @@ package() { install -dm700 "${pkgdir}"/var/lib/mysql } -md5sums=('0f61fde172ed1168a3ca9b7b003a6698' +md5sums=('e0091c0e8213378f0b5756535fe5799f' '243864805611764a7e5883c1dba7afd8' '1c949c0dbea5206af0db14942d9927b6') diff --git a/community/raul/PKGBUILD b/community/raul/PKGBUILD index 265a1eb90..ad603272e 100644 --- a/community/raul/PKGBUILD +++ b/community/raul/PKGBUILD @@ -1,32 +1,34 @@ -# $Id: PKGBUILD 68139 2012-03-18 16:41:01Z schiv $ +# $Id: PKGBUILD 68252 2012-03-20 16:47:35Z giovanni $ # Maintainer: Ray Rashif # Contributor: Max a.k.a. Synthead # Contributor: christhemonkey pkgname=raul pkgver=0.8.0 -pkgrel=2 +pkgrel=3 pkgdesc="C++ Realtime Audio Utility Library" -arch=(i686 x86_64) +arch=('i686' 'x86_64') url="http://drobilla.net/software/raul/" depends=('glib2') makedepends=('boost' 'python2') license=('GPL') -install=$pkgname.install -source=(http://download.drobilla.net/$pkgname-$pkgver.tar.bz2) -md5sums=('8fa71a20db81fbed5fb6516dea383ea8') +options=('!makeflags') +source=("http://download.drobilla.net/$pkgname-$pkgver.tar.bz2" + 'raul-0.8.0-ldconfig.patch') +md5sums=('8fa71a20db81fbed5fb6516dea383ea8' + 'e86cee755a503d25d37fb2bcaaf48a9b') build() { - cd "$srcdir/$pkgname-$pkgver" + cd "${srcdir}/${pkgname}-${pkgver}" + + patch -Np1 -i "${srcdir}/raul-0.8.0-ldconfig.patch" python2 waf configure --prefix=/usr python2 waf build $MAKEFLAGS } package() { - cd "$srcdir/$pkgname-$pkgver" + cd "${srcdir}/${pkgname}-${pkgver}" - python2 waf install --destdir="$pkgdir" + python2 waf install --destdir="${pkgdir}" } - -# vim:set ts=2 sw=2 et: diff --git a/community/raul/raul-0.8.0-ldconfig.patch b/community/raul/raul-0.8.0-ldconfig.patch new file mode 100644 index 000000000..a4780b68b --- /dev/null +++ b/community/raul/raul-0.8.0-ldconfig.patch @@ -0,0 +1,10 @@ +--- a/wscript ++++ b/wscript +@@ -153,7 +153,5 @@ def build(bld): + # Documentation + autowaf.build_dox(bld, 'RAUL', RAUL_VERSION, top, out) + +- bld.add_post_fun(autowaf.run_ldconfig) +- + def test(ctx): + autowaf.run_tests(ctx, APPNAME, tests.split()) diff --git a/community/soundkonverter/PKGBUILD b/community/soundkonverter/PKGBUILD index f34b6c881..6c8937a9a 100644 --- a/community/soundkonverter/PKGBUILD +++ b/community/soundkonverter/PKGBUILD @@ -1,11 +1,11 @@ -# $Id: PKGBUILD 66120 2012-02-23 01:34:13Z andrea $ -# Maintainer: +# $Id: PKGBUILD 68236 2012-03-20 07:50:05Z stativ $ +# Maintainer: Lukas Jirkovsky # Contributor: Mateusz Herych # Contributor: Eric Belanger # Contributor: Darwin Bautista pkgname=soundkonverter -pkgver=1.3.3 +pkgver=1.4.0 pkgrel=1 pkgdesc="Front-end to various audio converters" arch=('i686' 'x86_64') @@ -14,31 +14,34 @@ license=('GPL') depends=('kdemultimedia-kioslave' 'taglib') makedepends=('automoc4' 'cmake') optdepends=('cdrkit: cdda2wav backend' - 'faac: faac backend' - 'faad2: faad backend' - 'ffmpeg: ffmpeg backend' - 'flac: flac backend' - 'lame: lame backend' - 'mplayer: mplayer backend' - 'vorbis-tools: oggenc, oggdec backends' - 'speex: speexenc, speexdec backends' - 'vorbisgain: vorbisgain backend' - ) + 'faac: faac backend' + 'faad2: faad backend' + 'ffmpeg: ffmpeg backend' + 'flac: flac backend' + 'fluidsynth: flouidsynth backend' + 'lame: lame backend' + 'mac: mac backend' + 'mplayer: mplayer backend' + 'mp3gain: mp3gain backend' + 'speex: speexenc, speexdec backends' + 'timidity++: midi backend' + 'twolame: twolame backend' + 'vorbisgain: vorbisgain backend' + 'vorbis-tools: vorbis tools backend' + 'wavpack: wavpack backend') install=$pkgname.install source=("http://kde-apps.org/CONTENT/content-files/29024-${pkgname}-${pkgver}.tar.gz") -md5sums=('cb61ee363f78f9dfaf807780ef65095d') +md5sums=('4d3d1ccab74c2dd41971c3a4a4e7fb57') build() { - cd "${srcdir}" - mkdir build - cd build - cmake ../${pkgname}-${pkgver} \ + cd "$srcdir"/$pkgname-$pkgver + cmake . \ -DCMAKE_INSTALL_PREFIX=/usr \ -DCMAKE_BUILD_TYPE=Release make } package() { - cd "${srcdir}"/build - make DESTDIR="${pkgdir}" install + cd "$srcdir"/$pkgname-$pkgver + make DESTDIR="$pkgdir" install } -- cgit v1.2.3-54-g00ecf