core/gst-plugins-good/PKGBUILD

47 lines
1.4 KiB
Bash
Raw Normal View History

2013-11-13 06:48:37 +08:00
#
# Platform Packages for Chakra, part of chakra-project.org
#
# Maintainer: Francesco Marinucci < franzmari[at]chakra-project[dot]it>
# contributor Jan de Groot <jgc@archlinux.org>
pkgname=gst-plugins-good
2016-01-02 13:45:18 +08:00
pkgver=1.6.2
pkgrel=1
pkgdesc="GStreamer Multimedia Framework Good Plugins"
arch=('x86_64')
license=('LGPL')
url="http://gstreamer.freedesktop.org/"
2016-01-02 13:45:18 +08:00
depends=('libpulse' 'jack' 'libsoup' 'gst-plugins-base-libs' 'wavpack' 'aalib' 'taglib' 'libdv' 'libshout' 'libvpx' 'gdk-pixbuf2' 'libcaca' 'libavc1394' 'libiec61883' 'libxdamage' 'v4l-utils' 'cairo' 'libgudev')
makedepends=('gstreamer' 'speex' 'flac' 'libraw1394' 'python3')
options=(!emptydirs)
source=(${url}/src/$pkgname/$pkgname-$pkgver.tar.xz)
2016-01-02 13:45:18 +08:00
sha256sums=('876e54dfce93274b98e024f353258d35fa4d49d1f9010069e676c530f6eb6a92')
build() {
cd $pkgname-$pkgver
2015-01-09 07:46:55 +08:00
./configure --prefix=/usr \
--sysconfdir=/etc \
--localstatedir=/var \
--disable-static \
--enable-experimental \
2015-01-09 07:46:55 +08:00
--with-package-name="GStreamer Good Plugins (Chakra GNU/Linux)" \
2014-07-23 02:35:48 +08:00
--with-package-origin="http://www.chakraos.org/"
2015-01-09 07:46:55 +08:00
# https://bugzilla.gnome.org/show_bug.cgi?id=655517
sed -i -e 's/ -shared / -Wl,-O1,--as-needed\0/g' libtool
make
}
2016-01-02 13:45:18 +08:00
# Disabled for now: souphttpsrc times out, and takes a damn long time to do so
#check() {
# cd $pkgname-$pkgver
# make check
#}
package() {
cd $pkgname-$pkgver
2016-01-02 13:45:18 +08:00
make DESTDIR="${pkgdir}" install
}