opt/gstreamer-compat/Pkgfile

31 lines
761 B
Plaintext
Raw Normal View History

# Description: Gstreamer is a library that allows the construction of graphs of media-handling components.
# URL: http://gstreamer.freedesktop.org/
2014-11-10 13:25:50 +01:00
# Maintainer: Danny Rawlins, crux at romster dot me
# Packager: Matt Housh, jaeger at morpheus dot net
# Depends on: glib libxml2 python gobject-introspection
name=gstreamer-compat
2012-03-02 10:04:26 +01:00
version=0.10.36
release=3
source=(http://gstreamer.freedesktop.org/src/gstreamer/gstreamer-$version.tar.xz
2013-08-10 12:21:08 +02:00
bison.patch)
build() {
cd gstreamer-$version
2011-11-02 12:33:24 +01:00
2013-08-10 12:21:08 +02:00
patch -p1 -i $SRC/bison.patch
2011-11-02 12:33:24 +01:00
./configure \
--prefix=/usr \
--libexecdir=/usr/lib \
--disable-debug \
--disable-nls \
--disable-dependency-tracking \
--disable-valgrind \
--disable-examples
2011-11-02 12:33:24 +01:00
make
make DESTDIR=$PKG install
rm -r $PKG/usr/share/gtk-doc
}