summaryrefslogtreecommitdiff
path: root/community/qmmp
diff options
context:
space:
mode:
authorroot <root@rshg054.dnsready.net>2013-02-17 00:45:16 -0800
committerroot <root@rshg054.dnsready.net>2013-02-17 00:45:16 -0800
commitc6f4cd18ab706868be0eff10327a0dcd58cecdf3 (patch)
treede3914332965ed3485e383ba0da41ef1b1c8c427 /community/qmmp
parent4a4f6be8604aa35bdc81ae29d86b07dc8aea0c5c (diff)
Sun Feb 17 00:45:00 PST 2013
Diffstat (limited to 'community/qmmp')
-rw-r--r--community/qmmp/PKGBUILD14
1 files changed, 9 insertions, 5 deletions
diff --git a/community/qmmp/PKGBUILD b/community/qmmp/PKGBUILD
index 3b45257bf..b56faa08c 100644
--- a/community/qmmp/PKGBUILD
+++ b/community/qmmp/PKGBUILD
@@ -1,9 +1,9 @@
-#$Id: PKGBUILD 82337 2013-01-15 11:35:09Z allan $
+#$Id: PKGBUILD 84362 2013-02-16 22:50:40Z ioni $
# Maintainer: Jaroslav Lichtblau <dragonlord@aur.archlinux.org>
pkgname=qmmp
pkgver=0.6.6
-pkgrel=2
+pkgrel=5
pkgdesc="Qt4 based audio-player"
arch=('i686' 'x86_64')
url="http://qmmp.ylsoftware.com/"
@@ -14,7 +14,7 @@ optdepends=('flac: native FLAC support'
'jack: JACK sound output'
'libmpcdec: Musepack support'
'pulseaudio: PulseAudio output'
- 'libcdio: Compact Disc input and control support'
+ 'libcdio-paranoia: Compact Disc input and control support'
'libcddb: CDDB server support'
'libmms: MMS stream protocol support'
'libmodplug: MOD playing library'
@@ -32,12 +32,16 @@ build() {
patch -Np1 -i ${srcdir}/cdio-includes.patch
- cmake . -DCMAKE_INSTALL_PREFIX=/usr
+ cmake . -DCMAKE_INSTALL_PREFIX=/usr \
+ -DCMAKE_INSTALL_LIBDIR=/usr/lib
make
}
package() {
cd ${srcdir}/$pkgname-$pkgver
-
make DESTDIR=${pkgdir} install
+
+ if [[ $CARCH == 'x86_64' ]]; then
+ mv $pkgdir/usr/lib64 $pkgdir/usr/lib
+ fi
}