12345678910111213141516171819202122232425 |
- # Description: GStreamer Bad Plug-ins, diğerlerine kıyasla eşit olmayan bir dizi eklentidir.
- # URL: https://gstreamer.freedesktop.org/modules/gst-plugins-bad.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
- }
|