Date: Friday, February 9, 2018 @ 11:15:52 Author: arojas Revision: 316508
Rebuild, remove unused makedep Modified: phonon-gstreamer/trunk/PKGBUILD ----------+ PKGBUILD | 25 +++++++++++++------------ 1 file changed, 13 insertions(+), 12 deletions(-) Modified: PKGBUILD =================================================================== --- PKGBUILD 2018-02-09 11:12:18 UTC (rev 316507) +++ PKGBUILD 2018-02-09 11:15:52 UTC (rev 316508) @@ -1,18 +1,19 @@ # $Id$ -# Maintainer: Andrea Scarpino <[email protected]> +# Maintainer: Antonio Rojas <[email protected]> +# Contributor: Andrea Scarpino <[email protected]> pkgbase=phonon-gstreamer -pkgname=('phonon-qt4-gstreamer' 'phonon-qt5-gstreamer') +pkgname=(phonon-qt4-gstreamer phonon-qt5-gstreamer) pkgver=4.9.0 -pkgrel=3 -arch=('x86_64') +pkgrel=4 +arch=(x86_64) url='http://phonon.kde.org/' -license=('LGPL') +license=(LGPL) optdepends=('pulseaudio: PulseAudio support' 'gst-plugins-good: PulseAudio support and good codecs' 'gst-plugins-bad: additional codecs' 'gst-plugins-ugly: additional codecs' 'gst-libav: libav codec') -makedepends=('gst-plugins-base' 'extra-cmake-modules' 'automoc4' 'phonon-qt4' 'phonon-qt5' 'qt5-x11extras') -source=("http://download.kde.org/stable/phonon/phonon-backend-gstreamer/${pkgver}/phonon-backend-gstreamer-${pkgver}.tar.xz") -md5sums=('b2b0ca327908948ce8cdba117e31bf80') +makedepends=(gst-plugins-base extra-cmake-modules phonon-qt4 phonon-qt5 qt5-x11extras) +source=("http://download.kde.org/stable/phonon/phonon-backend-gstreamer/$pkgver/phonon-backend-gstreamer-$pkgver.tar.xz") +sha256sums=('cec3e5ece1261d344b68363ef0606ebf49772628ba94bb55b0c0d18773b885f1') prepare() { mkdir build-qt4 @@ -21,7 +22,7 @@ build() { cd build-qt4 - cmake ../${pkgbase}-${pkgver} \ + cmake ../$pkgbase-$pkgver \ -DCMAKE_BUILD_TYPE=Release \ -DCMAKE_INSTALL_PREFIX=/usr \ -DCMAKE_SKIP_RPATH=ON \ @@ -30,7 +31,7 @@ make cd ../build-qt5 - cmake ../${pkgbase}-${pkgver} \ + cmake ../$pkgbase-$pkgver \ -DCMAKE_BUILD_TYPE=Release \ -DCMAKE_INSTALL_PREFIX=/usr \ -DCMAKE_SKIP_RPATH=ON \ @@ -46,7 +47,7 @@ provides=(phonon-qt4-backend) cd build-qt4 - make DESTDIR="${pkgdir}" install + make DESTDIR="$pkgdir" install # Conflict with -qt5 rm -r "$pkgdir"/usr/share/icons @@ -58,5 +59,5 @@ provides=(phonon-qt5-backend) cd build-qt5 - make DESTDIR="${pkgdir}" install + make DESTDIR="$pkgdir" install }
