26 lines
744 B
Plaintext
26 lines
744 B
Plaintext
# Description: GStreamer Multimedia Framework Bad Plugins
|
|
# URL: http://gstreamer.freedesktop.org/modules/gst-plugins-base.html
|
|
# Packager: alihan-ozturk28@hotmail.com
|
|
# Depends on: gstreamer-plugins-base faac faad2 libmms libpng libvpx xvid jasper
|
|
|
|
name=gstreamer-plugins-bad
|
|
version=0.10.23
|
|
release=1
|
|
_name=gst-plugins-bad
|
|
|
|
source=(http://gstreamer.freedesktop.org/src/$_name/$_name-$version.tar.bz2
|
|
$name-$version-compatibility-1.patch)
|
|
|
|
build() {
|
|
cd $_name-$version
|
|
patch -Np1 -i ../$name-$version-compatibility-1.patch
|
|
./configure --prefix=/usr \
|
|
--with-gtk=3.0 \
|
|
--disable-examples \
|
|
--with-package-name='Milis gstreamer-plugins-bad package' \
|
|
--with-package-origin='https://milis.gungre.ch/'
|
|
|
|
make
|
|
make DESTDIR=$PKG install
|
|
}
|