blob: 761447334710270036d2916eb0dd887da3648197 (
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
28
|
#!/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
sed -i 's/diff --version/command -v diff/' configure
}
build () {
mkdir libvpx-build &&
cd libvpx-build &&
../configure --prefix=/usr \
--enable-shared \
--disable-static &&
make
}
package () {
make DESTDIR=$PKG_DEST install
}
|