Upgraded base/cmake to version 3.27.7 Upgraded base/glib to 2.78.1 Upgraded base/libvpx to 1.10.0 Added AMDGPU and BPF build targets to base/llvm Added a patch to extra/ffmpegthumbnailer for fixing a build error against ffmpeg 5.X versions Upgraded gtk/libwnck3 to 3.36.0 Upgraded heavybuilds/firefox to 115.5.0 Added some patches to base/wpa-supplicant Added glslang to xorg
39 lines
No EOL
912 B
Text
Executable file
39 lines
No EOL
912 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 creates /usr in staging if prefix is unset
|
|
# and fails if '/' is passed as prefix
|
|
./configure \
|
|
--prefix="//" \
|
|
--enable-shared \
|
|
--disable-static
|
|
|
|
make
|
|
make install DESTDIR=$pkg
|
|
|
|
cp LICENSE $pkgdocs/
|
|
|
|
mkfinalpkg
|
|
}
|
|
|
|
sha512sums="
|
|
ee9993a0db857f6bf8279105cd78e0f635855b6b4f1a080ccb15a78db5ad4075e30679e9c6714706e3830e644fc2503d56d4d34d1367403fb4f818e009f6f5b8 libvpx-1.10.0.tar.lz
|
|
" |