summaryrefslogtreecommitdiff
path: root/community/cantata/PKGBUILD
diff options
context:
space:
mode:
authorMichał Masłowski <mtjm@mtjm.eu>2013-03-04 09:51:11 +0100
committerMichał Masłowski <mtjm@mtjm.eu>2013-03-04 09:51:11 +0100
commit6b67b8c583b321bc955bc8efd24befe40d15e9fc (patch)
tree61148cd550443788030ce27e3d7bee9fb9daf57e /community/cantata/PKGBUILD
parent8ba6ee51e836f2a5b78c7d6ca0096ddb5f847833 (diff)
parent3a8d026e8e859ff4c9aa813d5f1eb2afa5663e78 (diff)
Merge branch 'master' of ssh://parabolagnulinux.org:1863/home/parabola/abslibre-pre-mips64el
Conflicts: community/erlang-sdl/PKGBUILD community/nautilus-sound-converter/PKGBUILD community/shapelib/PKGBUILD core/libarchive/PKGBUILD extra/claws-mail-extra-plugins/PKGBUILD extra/evince/PKGBUILD extra/gtk3/PKGBUILD extra/gvfs/PKGBUILD extra/libgxps/PKGBUILD extra/mkvtoolnix/PKGBUILD extra/qt5/PKGBUILD libre/gstreamer0.10-bad-libre/PKGBUILD libre/kernel26-libre-lts/PKGBUILD
Diffstat (limited to 'community/cantata/PKGBUILD')
-rw-r--r--community/cantata/PKGBUILD22
1 files changed, 13 insertions, 9 deletions
diff --git a/community/cantata/PKGBUILD b/community/cantata/PKGBUILD
index 664db3e74..1c1bb4e3a 100644
--- a/community/cantata/PKGBUILD
+++ b/community/cantata/PKGBUILD
@@ -1,5 +1,6 @@
-# $Id: PKGBUILD 84345 2013-02-16 22:50:24Z ioni $
-# Maintainer: Andrea Scarpino <andrea@archlinux.org>
+# $Id: PKGBUILD 85533 2013-03-02 23:09:58Z cinelli $
+# Maintainer: Federico Cinelli <cinelli@aur.archlinux.org>
+# Contributor: Andrea Scarpino <andrea@archlinux.org>
# Contributor: Mcder3 <mcder3[at]gmail[dot]com>
# Contributor: MisterFred <mister.fred[at]free[dot]fr>
@@ -10,23 +11,26 @@ pkgrel=2
arch=('i686' 'x86_64' 'mips64el')
url="http://kde-apps.org/content/show.php/Cantata?content=147733"
license=('GPL')
-depends=('kdebase-runtime' 'taglib-extras' 'ffmpeg' 'mpg123' 'libmtp' 'speex')
+depends=('kdebase-runtime' 'taglib-extras' 'mpg123' 'libmtp')
makedepends=('cmake' 'automoc4')
-install=${pkgname}.install
-source=("http://cantata.googlecode.com/files/${pkgname}-${pkgver}.tar.bz2")
+install="$pkgname.install"
+source=("http://cantata.googlecode.com/files/$pkgname-$pkgver.tar.bz2")
md5sums=('882cec90eb01d190b899689675e990b0')
build() {
+ cd "$srcdir/$pkgname-$pkgver"
mkdir build
- cd build
- cmake ../${pkgname}-${pkgver} \
+
+ cmake . \
-DCMAKE_INSTALL_PREFIX=/usr \
-DCMAKE_BUILD_TYPE=Release \
-DENABLE_PHONON=ON
+
make
}
package() {
- cd build
- make DESTDIR="${pkgdir}" install
+ cd "$srcdir/$pkgname-$pkgver"
+
+ make DESTDIR="$pkgdir" PREFIX="/usr" install
}