blob: ab8d127349e0fefe01f937a6cdc74f0eef278f58 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
|
#!/bin/sh
MAKEDEPS="make"
DEPS="nasm which"
DESC="VP8 and VP9 codec"
PKG_VER=1.11.0
SOURCE=https://github.com/webmproject/libvpx/archive/v$PKG_VER/libvpx-$PKG_VER.tar.gz
prepare () {
sed -i 's/cp -p/cp/' build/make/Makefile
}
build () {
mkdir libvpx-build &&
cd libvpx-build &&
../configure --prefix=/usr \
--enable-shared \
--disable-static &&
make
}
package () {
make DESTDIR=$PKG_DEST install
}
|