contrib/gstreamer/Pkgfile

38 lines
1.0 KiB
Plaintext
Raw Normal View History

2006-12-10 10:22:46 +01:00
# Description: Gstreamer is a library that allows the construction of graphs of media-handling components.
# URL: http://gstreamer.freedesktop.org/
2008-03-26 03:45:31 +01:00
# Maintainer: Danny Rawlins, monster dot romster at gmail dot com
2006-12-10 10:22:46 +01:00
# Packager: Matt Housh, jaeger at morpheus dot net
2008-02-26 07:35:51 +01:00
# Depends on: libxml2 glib python
2006-12-10 10:22:46 +01:00
name=gstreamer
2008-10-05 17:29:19 +02:00
version=0.10.21
2006-12-10 10:22:46 +01:00
release=1
source=(http://gstreamer.freedesktop.org/src/$name/$name-$version.tar.bz2
$name-0.10.21-disable_gtkdoc_generated.patch)
2006-12-10 10:22:46 +01:00
build() {
cd $name-$version
2006-12-10 10:22:46 +01:00
# this patch created with autoconf-2.61 automake-1.10.1 in chroot
patch -p 7 -i $SRC/$name-0.10.21-disable_gtkdoc_generated.patch
# origional patch wont work on recent autoconf and automake versions.
#patch -p 1 -i $SRC/$name-0.10.21-disable-gtkdoc.patch
#automake
2008-10-05 17:29:19 +02:00
2006-12-10 10:22:46 +01:00
./configure \
--prefix=/usr \
--mandir=/usr/man \
2007-08-04 09:43:59 +02:00
--disable-static \
2006-12-10 10:22:46 +01:00
--disable-nls \
--disable-gst-debug \
2007-08-04 09:43:59 +02:00
--disable-debug \
2006-12-10 10:22:46 +01:00
--disable-examples \
2008-10-05 17:29:19 +02:00
--disable-valgrind \
--disable-gtk-doc \
--disable-docbook
2006-12-10 10:22:46 +01:00
2007-04-01 08:32:33 +02:00
make
make DESTDIR=$PKG install
2006-12-10 10:22:46 +01:00
}