#Packager: Dimitris Tzemos (djemos@slackel.gr) pkgname=gstreamer0 pkgver=0.10.36 pkgrel=1dj source=("http://gstreamer.freedesktop.org/src/gstreamer/gstreamer-$pkgver.tar.xz" "tests-remove-silly-test_fail_abstract_new-check.patch" "bison3.patch") docs=("readme" "install" "copying" "changelog" "authors" "news" "todo") url=http://gstreamer.freedesktop.org/ slackdesc=\ ( #|-----handy-ruler------------------------------------------------------| "GStreamer (streaming multimedia framework, v0)" "GStreamer is a library that allows the construction of graphs of a" "media-handling components, ranging from simple Ogg/Vorbis playback" "to complex audio (mixing) and video (non-linear editing) processing." "Applications can take advantage of advances in codec and filter" "technology transparently. Developers can add new codecs and filters" "by writing a simple plugin with a clean, generic interface." "" "GStreamer is released under the LGPL." ) build() { cd $startdir/src/gstreamer-$pkgver patch -Np1 -i $SRC/tests-remove-silly-test_fail_abstract_new-check.patch || return 1 patch -Np1 -i $SRC/bison3.patch || return 1 ./configure --prefix=/usr \ --libdir=/usr/lib${LIBDIRSUFFIX} \ --localstatedir=/var \ --sysconfdir=/etc \ --disable-static \ --disable-debug \ --disable-gst-debug \ --enable-glib-asserts=no \ --with-package-name='gstreamer' \ --with-package-origin='http://gstreamer.freedesktop.org' \ --build=$arch-slackware-linux make -j $numjobs || return 1 make install DESTDIR=$startdir/pkg }