mirror of
https://github.com/archlinuxarm/PKGBUILDs.git
synced 2024-11-08 22:45:43 +00:00
46 lines
1.4 KiB
Bash
46 lines
1.4 KiB
Bash
|
# $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
|
||
|
pkgver=1.0.7
|
||
|
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' 'wayland')
|
||
|
makedepends=('schroedinger' 'libexif' 'libdvdread' 'libvdpau' 'libmpeg2')
|
||
|
options=(!libtool !emptydirs)
|
||
|
source=(${url}/src/$pkgname/$pkgname-$pkgver.tar.xz)
|
||
|
sha256sums=('5f49e6353fdc855834b5beb054b3a47ef5fa558006c7eda6d2ec07b36315c2ab')
|
||
|
|
||
|
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
|
||
|
}
|