diff options
Diffstat (limited to 'extra/phonon/PKGBUILD')
-rw-r--r-- | extra/phonon/PKGBUILD | 17 |
1 files changed, 10 insertions, 7 deletions
diff --git a/extra/phonon/PKGBUILD b/extra/phonon/PKGBUILD index 4198b42df..0535acd73 100644 --- a/extra/phonon/PKGBUILD +++ b/extra/phonon/PKGBUILD @@ -1,9 +1,9 @@ -# $Id: PKGBUILD 149569 2012-02-08 14:44:08Z andrea $ +# $Id: PKGBUILD 169725 2012-10-27 10:50:17Z andrea $ # Maintainer: Andrea Scarpino <andrea@archlinux.org> pkgname=phonon pkgver=4.6.0 -pkgrel=2.1 +pkgrel=3 epoch=1 arch=('i686' 'x86_64' 'mips64el') url='http://phonon.kde.org/' @@ -13,15 +13,18 @@ depends=('qt' 'phonon-backend' 'libpulse' 'libqzeitgeist') optdepends=('pulseaudio: PulseAudio support') makedepends=('cmake' 'automoc4' 'pulseaudio' 'qtwebkit') source=("http://download.kde.org/stable/${pkgname}/${pkgver}/src/${pkgname}-${pkgver}.tar.xz" - 'fix-plugindir-for-qt-app.patch') + 'fix-plugindir-for-qt-app.patch' + 'fix-qmake.patch') md5sums=('bbe0c1c62ed14c31479c4c1a6cf1e173' - 'e37d67038c2501f25ac7ee7c2de54a9a') + 'e37d67038c2501f25ac7ee7c2de54a9a' + 'c17d8617e9482f02b3e098842946b679') build() { - cd "${srcdir}"/${pkgname}-${pkgver} + cd ${pkgname}-${pkgver} patch -p1 -i "${srcdir}"/fix-plugindir-for-qt-app.patch + patch -p1 -i "${srcdir}"/fix-qmake.patch + cd ../ - cd "${srcdir}" mkdir build cd build cmake ../${pkgname}-${pkgver} \ @@ -34,6 +37,6 @@ build() { } package(){ - cd "${srcdir}"/build + cd build make DESTDIR="${pkgdir}" install } |