Upgraded base/pax-utils to 1.3.8 Upgraded base/x264 to 0.164 Rewrote base/docbook build file Discarded unnecessary hidden files in base/json-c Disabled support for native language support in base/libsecret,util-linux Added /usr prefix to several base build files
38 lines
844 B
Text
Executable file
38 lines
844 B
Text
Executable file
# Maintainer: PktSurf <smlinux@pktsurf.in>
|
|
app=libvpx
|
|
version=1.10.0
|
|
build=1sml
|
|
homepage="https://github.com/webmproject/libvpx"
|
|
download="https://github.com/webmproject/libvpx/archive/refs/tags/v$version.tar.gz"
|
|
desc="provides the WebM VP8/VP9 codec libraries"
|
|
requires="gcc-libs nasm"
|
|
|
|
prepbuilddir() {
|
|
mkandenterbuilddir
|
|
rm -rf $app-$version
|
|
|
|
tar xf $srcdir/$app-$version.tar.?z*
|
|
cd $app-$version
|
|
fixbuilddirpermissions
|
|
|
|
sed -i 's/cp -p/cp/' build/make/Makefile
|
|
}
|
|
|
|
build() {
|
|
./configure \
|
|
--prefix=/usr \
|
|
--enable-shared \
|
|
--disable-static \
|
|
--disable-install-bins
|
|
|
|
make
|
|
make install DESTDIR=$pkg
|
|
|
|
cp LICENSE $pkgdocs/
|
|
|
|
mkfinalpkg
|
|
}
|
|
|
|
sha512sums="
|
|
ee9993a0db857f6bf8279105cd78e0f635855b6b4f1a080ccb15a78db5ad4075e30679e9c6714706e3830e644fc2503d56d4d34d1367403fb4f818e009f6f5b8 libvpx-1.10.0.tar.lz
|
|
"
|