PKGBUILDs/extra/gst-plugins-bad/PKGBUILD

46 lines
1.4 KiB
Bash
Raw Normal View History

2013-05-28 00:59:03 +00:00
# $Id: PKGBUILD 183688 2013-04-26 16:07:41Z heftig $
# Maintainer: Jan de Groot <jgc@archlinux.org>
# ALARM: Kevin Mihelich <kevin@archlinuxarm.org>
# - disable soundtouch extension on v5, currently broken
pkgname=gst-plugins-bad
2013-07-31 18:21:06 +00:00
pkgver=1.0.9
2013-05-28 00:59:03 +00:00
pkgrel=1
pkgdesc="GStreamer Multimedia Framework Bad Plugins"
arch=('i686' 'x86_64')
license=('LGPL')
url="http://gstreamer.freedesktop.org/"
2013-07-31 18:21:06 +00:00
depends=('mjpegtools' 'gst-plugins-base-libs' 'curl' 'chromaprint' 'libmms' 'faad2' 'mpg123' 'faac' 'celt' 'libdca' 'soundtouch' 'spandsp' 'libdvdnav' 'libmodplug' 'libgme' 'opus' 'wayland' 'neon' 'libofa' 'fluidsynth' 'openjpeg')
2013-05-28 00:59:03 +00:00
makedepends=('schroedinger' 'libexif' 'libdvdread' 'libvdpau' 'libmpeg2')
options=(!libtool !emptydirs)
source=(${url}/src/$pkgname/$pkgname-$pkgver.tar.xz)
2013-07-31 18:21:06 +00:00
sha256sums=('69d236b1d8188270a3f51f6710146d0ca63c2f1a9f6cfbab3399ef01b9498f75')
2013-05-28 00:59:03 +00:00
build() {
cd $pkgname-$pkgver
sed -i '/AC_PATH_XTRA/d' configure.ac
aclocal -I m4 -I common/m4
autoconf
automake --add-missing
[[ $CARCH == 'arm' ]] && CONFIG="--disable-soundtouch"
./configure --prefix=/usr --sysconfdir=/etc --localstatedir=/var \
--disable-static --enable-experimental \
--with-package-name="GStreamer Bad Plugins (Archlinux)" \
--with-package-origin="http://www.archlinux.org/" \
--with-gtk=3.0 $CONFIG
make
}
check() {
cd $pkgname-$pkgver
make check
}
package() {
cd $pkgname-$pkgver
make DESTDIR="${pkgdir}" install
}