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