diff options
Diffstat (limited to 'gnome-unstable/gst-plugins-bad/PKGBUILD')
-rw-r--r-- | gnome-unstable/gst-plugins-bad/PKGBUILD | 13 |
1 files changed, 7 insertions, 6 deletions
diff --git a/gnome-unstable/gst-plugins-bad/PKGBUILD b/gnome-unstable/gst-plugins-bad/PKGBUILD index fe92ff01c..1326152c6 100644 --- a/gnome-unstable/gst-plugins-bad/PKGBUILD +++ b/gnome-unstable/gst-plugins-bad/PKGBUILD @@ -2,18 +2,20 @@ # Maintainer: Jan de Groot <jgc@archlinux.org> pkgname=gst-plugins-bad -pkgver=1.0.0 +pkgver=1.0.1 pkgrel=1 +pkgdesc="GStreamer Multimedia Framework Bad Plugins" arch=('i686' 'x86_64') license=('LGPL') url="http://gstreamer.freedesktop.org/" depends=('mjpegtools' 'gst-plugins-base-libs' 'curl' 'chromaprint' 'libmms' 'faad2' 'mpg123' 'faac' 'celt' 'libdca' 'soundtouch' 'spandsp' 'libdvdnav' 'libmodplug' 'libgme' 'opus') makedepends=('gstreamer' 'schroedinger' 'gtk3' 'libexif' 'libdvdread' 'libvdpau' 'libmpeg2') options=(!libtool !emptydirs) -source=(${url}/src/gst-plugins-bad/gst-plugins-bad-${pkgver}.tar.xz) +source=(${url}/src/$pkgname/$pkgname-$pkgver.tar.xz) +sha256sums=('5e3cffcd258c4c722c880a52ebc9920d6b38aa4153bbc49d1b5a9893885d45f3') build() { - cd "${srcdir}/gst-plugins-bad-${pkgver}" + cd $pkgname-$pkgver sed -i '/AC_PATH_XTRA/d' configure.ac autoreconf ./configure --prefix=/usr --sysconfdir=/etc --localstatedir=/var \ @@ -25,12 +27,11 @@ build() { } check() { - cd "${srcdir}/gst-plugins-bad-${pkgver}" + cd $pkgname-$pkgver make check } package() { - cd "${srcdir}/gst-plugins-bad-${pkgver}" + cd $pkgname-$pkgver make DESTDIR="${pkgdir}" install } -md5sums=('f2d2c432917fb639a510bb3ce85c5329') |