27 lines
699 B
Plaintext
27 lines
699 B
Plaintext
# 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.
|
||
# URL: https://github.com/webmproject/libvpx
|
||
# Paketçi: milisarge
|
||
# Gerekler: yasm
|
||
# Grup: medya
|
||
|
||
isim=libvpx
|
||
surum=1.5.0
|
||
devir=1
|
||
|
||
kaynak=(http://storage.googleapis.com/downloads.webmproject.org/releases/webm/libvpx-$surum.tar.bz2)
|
||
derle() {
|
||
cd $isim-$surum
|
||
sed -e 's/cp -p/cp/' \
|
||
-i build/make/Makefile
|
||
chmod -v 644 vpx/*.h
|
||
mkdir ../libvpx-build
|
||
cd ../libvpx-build
|
||
../libvpx-$surum/configure --prefix=/usr \
|
||
--enable-shared --disable-static \
|
||
--disable-install-docs \
|
||
--disable-install-srcs
|
||
make
|
||
|
||
make DESTDIR=$PKG install
|
||
}
|