mirror of
https://github.com/archlinuxarm/PKGBUILDs.git
synced 2025-02-16 23:57:11 +00:00
added extra/gst-plugins-bad
This commit is contained in:
parent
7bf3144c6a
commit
a3aa12739b
1 changed files with 45 additions and 0 deletions
45
extra/gst-plugins-bad/PKGBUILD
Normal file
45
extra/gst-plugins-bad/PKGBUILD
Normal file
|
@ -0,0 +1,45 @@
|
|||
# $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
|
||||
}
|
Loading…
Reference in a new issue