talimat 592 B

1234567891011121314151617181920212223242526
  1. # Description: VP8 Codec SDK'sı
  2. # URL: http://webm.googlecode.com/files/libvpx-v1.1.0.tar.bz2
  3. # Packager: milisarge
  4. # Depends on: yasm
  5. name=libvpx
  6. version=1.5.0
  7. release=1
  8. source=(http://storage.googleapis.com/downloads.webmproject.org/releases/webm/libvpx-$version.tar.bz2)
  9. build() {
  10. cd $name-$version
  11. sed -e 's/cp -p/cp/' \
  12. -i build/make/Makefile
  13. chmod -v 644 vpx/*.h
  14. mkdir ../libvpx-build
  15. cd ../libvpx-build
  16. ../libvpx-$version/configure --prefix=/usr \
  17. --enable-shared --disable-static \
  18. --disable-install-docs \
  19. --disable-install-srcs
  20. make
  21. make DESTDIR=$PKG install
  22. }