talimat 843 B

1234567891011121314151617181920212223242526272829
  1. # Description: GStreamer multimedya çerçevesi ffmpeg eklentileri
  2. # URL: http://gstreamer.freedesktop.org/modules/gst-plugins-base.html
  3. # Packager: alihan-ozturk28@hotmail.com
  4. # Depends on: gstreamer gstreamer-plugins-base yasm sdl
  5. name=gstreamer-plugins-ffmpeg
  6. version=0.10.13
  7. release=1
  8. _name=gst-ffmpeg
  9. source=(http://gstreamer.freedesktop.org/src/${_name}/${_name}-$version.tar.bz2
  10. http://downloads.nutyx.org/files/patchs/$name/h264_qpel_mmx.patch)
  11. build() {
  12. unset CFLAGS
  13. unset CXXFLAGS
  14. cd ${_name}-$version
  15. patch -Np1 -i ../h264_qpel_mmx.patch
  16. ./configure --prefix=/usr \
  17. --sysconfdir=/etc \
  18. --localstatedir=/var \
  19. --with-ffmpeg-extra-configure="--enable-runtime-cpudetect" \
  20. --with-package-name='PisiLinux gstreamer-ffmpeg package' \
  21. --with-package-origin='https://milis.gungre.ch/'
  22. make || make -j1
  23. make DESTDIR=$PKG install
  24. }