diff options
| author | emmett1 <emmett1.2miligrams@protonmail.com> | 2026-02-05 23:37:38 +0000 |
|---|---|---|
| committer | emmett1 <emmett1.2miligrams@protonmail.com> | 2026-02-05 23:37:38 +0000 |
| commit | 1f155d6f3234d6ab37e9177fdc0dc0b5ce371150 (patch) | |
| tree | 52649baa7c19710e4918fa8aa819d591e4e32b1b /repos/extra/libvpx/abuild | |
| parent | ec884b711c6f1baa892ac2afa45958718ab22c47 (diff) | |
| download | alicelinux-1f155d6f3234d6ab37e9177fdc0dc0b5ce371150.tar.gz alicelinux-1f155d6f3234d6ab37e9177fdc0dc0b5ce371150.zip | |
libvpx: disable tests and examples
Diffstat (limited to 'repos/extra/libvpx/abuild')
| -rw-r--r-- | repos/extra/libvpx/abuild | 8 |
1 files changed, 6 insertions, 2 deletions
diff --git a/repos/extra/libvpx/abuild b/repos/extra/libvpx/abuild index 7c30e1d7..c72a8a5b 100644 --- a/repos/extra/libvpx/abuild +++ b/repos/extra/libvpx/abuild @@ -11,7 +11,11 @@ build() { mkdir libvpx-build cd libvpx-build - ../configure --prefix=/usr --enable-shared + ../configure \ + --prefix=/usr \ + --enable-shared \ + --disable-unit-tests \ + --disable-examples make - make install + make DIST_DIR=$PKG/usr install } |