git » phonon-vlc.git » commit f763418

Do not install files under /usr/lib64

author Andrea Scarpino
2013-12-25 15:36:51 UTC
committer Andrea Scarpino
2013-12-25 15:36:51 UTC
parent 5a9513972b9ace545faad126a51234d42890e6eb

Do not install files under /usr/lib64

PKGBUILD +3 -2

diff --git a/PKGBUILD b/PKGBUILD
index a8e8358..e35c7aa 100644
--- a/PKGBUILD
+++ b/PKGBUILD
@@ -2,7 +2,7 @@
 
 pkgname=phonon-vlc
 pkgver=0.7.1
-pkgrel=1
+pkgrel=2
 arch=('i686' 'x86_64')
 url='http://phonon.kde.org/'
 pkgdesc="Phonon VLC backend"
@@ -22,7 +22,8 @@ build() {
   cmake ../phonon-backend-vlc-${pkgver} \
     -DCMAKE_BUILD_TYPE=Release \
     -DCMAKE_INSTALL_PREFIX=/usr \
-    -DCMAKE_SKIP_RPATH=ON
+    -DCMAKE_SKIP_RPATH=ON \
+    -DPLUGIN_INSTALL_DIR=/usr/lib/kde4
   make
 }