talimat 699 B

123456789101112131415161718192021222324252627
  1. # Tanım: Bu paket, WebM projesinden, en güncel html5 videosunda ve yeni nesil VP9 Codec'inde kullanılan VP8 Codec'in referans uygulamalarını sağlar.
  2. # URL: https://github.com/webmproject/libvpx
  3. # Paketçi: milisarge
  4. # Gerekler: yasm
  5. # Grup: medya
  6. isim=libvpx
  7. surum=1.5.0
  8. devir=1
  9. kaynak=(http://storage.googleapis.com/downloads.webmproject.org/releases/webm/libvpx-$surum.tar.bz2)
  10. derle() {
  11. cd $isim-$surum
  12. sed -e 's/cp -p/cp/' \
  13. -i build/make/Makefile
  14. chmod -v 644 vpx/*.h
  15. mkdir ../libvpx-build
  16. cd ../libvpx-build
  17. ../libvpx-$surum/configure --prefix=/usr \
  18. --enable-shared --disable-static \
  19. --disable-install-docs \
  20. --disable-install-srcs
  21. make
  22. make DESTDIR=$PKG install
  23. }