diff options
author | Cem Keylan <cem@ckyln.com> | 2019-12-09 19:17:24 +0300 |
---|---|---|
committer | Cem Keylan <cem@ckyln.com> | 2019-12-09 19:17:24 +0300 |
commit | 03423e0583057cbe5a16f8439183e2dbc0e8dd7c (patch) | |
tree | 81fe3ba69d94146f83fb5541d1fb2da0ac4eac08 /extra/libvpx/build | |
download | repository-03423e0583057cbe5a16f8439183e2dbc0e8dd7c.tar.gz |
secondary commit
Diffstat (limited to 'extra/libvpx/build')
-rwxr-xr-x | extra/libvpx/build | 23 |
1 files changed, 23 insertions, 0 deletions
diff --git a/extra/libvpx/build b/extra/libvpx/build new file mode 100755 index 00000000..04d7a732 --- /dev/null +++ b/extra/libvpx/build @@ -0,0 +1,23 @@ +#!/bin/sh -e + +patch -p1 < fix-busybox-diff.patch + +./configure \ + --prefix=/usr \ + --enable-vp8 \ + --enable-vp9 \ + --disable-tools \ + --disable-examples \ + --disable-docs \ + --enable-experimental \ + --enable-runtime-cpu-detect \ + --enable-shared \ + --enable-postproc \ + --enable-pic \ + --disable-install-docs \ + --disable-install-srcs \ + --disable-install-bins \ + --as=yasm + +make +make DESTDIR="$1" install |