talimat 842 B

123456789101112131415161718192021222324252627282930
  1. # Tanım: GStreamer multimedya çerçevesi ffmpeg eklentileri
  2. # URL: http://gstreamer.freedesktop.org/modules/gst-plugins-base.html
  3. # Paketçi: alihan-ozturk28@hotmail.com
  4. # Gerekler: gstreamer gstreamer-plugins-base yasm sdl
  5. # Grup: medya
  6. isim=gstreamer-plugins-ffmpeg
  7. surum=0.10.13
  8. devir=1
  9. _isim=gst-ffmpeg
  10. kaynak=(http://gstreamer.freedesktop.org/src/${_isim}/${_isim}-$surum.tar.bz2
  11. http://downloads.nutyx.org/files/patchs/$isim/h264_qpel_mmx.patch)
  12. derle() {
  13. unset CFLAGS
  14. unset CXXFLAGS
  15. cd ${_isim}-$surum
  16. patch -Np1 -i ../h264_qpel_mmx.patch
  17. ./configure --prefix=/usr \
  18. --sysconfdir=/etc \
  19. --localstatedir=/var \
  20. --with-ffmpeg-extra-configure="--enable-runtime-cpudetect" \
  21. --with-package-isim='PisiLinux gstreamer-ffmpeg package' \
  22. --with-package-origin='https://milis.gungre.ch/'
  23. make || make -j1
  24. make DESTDIR=$PKG install
  25. }