wok rev 24446
updated libvpx and libvpx-dev (1.8.2 -> 1.11.0)
author | Hans-G?nter Theisgen |
---|---|
date | Mon Feb 14 15:32:45 2022 +0100 (2022-02-14) |
parents | af8d823a3077 |
children | ede1d184d5c5 |
files | libvpx-dev/receipt libvpx/description.txt libvpx/receipt |
line diff
1.1 --- a/libvpx-dev/receipt Mon Feb 14 14:14:23 2022 +0000 1.2 +++ b/libvpx-dev/receipt Mon Feb 14 15:32:45 2022 +0100 1.3 @@ -1,7 +1,7 @@ 1.4 # SliTaz package receipt. 1.5 1.6 PACKAGE="libvpx-dev" 1.7 -VERSION="1.8.2" 1.8 +VERSION="1.11.0" 1.9 CATEGORY="development" 1.10 SHORT_DESC="Development files for libvpx." 1.11 MAINTAINER="slaxemulator@gmail.com" 1.12 @@ -14,10 +14,8 @@ 1.13 # Rules to gen a SliTaz package suitable for Tazpkg. 1.14 genpkg_rules() 1.15 { 1.16 - mkdir -p $fs/usr/lib 1.17 - 1.18 - cp -a $install/usr/include $fs/usr 1.19 - cp -a $install/usr/lib/*.*a $fs/usr/lib 1.20 - cp -a $install/usr/lib/pkgconfig $fs/usr/lib 1.21 + cook_copy_folders include 1.22 + cook_copy_folders pkgconfig 1.23 + cook_copy_files *.*a 1.24 } 1.25
2.1 --- /dev/null Thu Jan 01 00:00:00 1970 +0000 2.2 +++ b/libvpx/description.txt Mon Feb 14 15:32:45 2022 +0100 2.3 @@ -0,0 +1,4 @@ 2.4 +Lipvpx is a reference implementation of a VP8 (and VP9) codec. 2.5 +It has a mode for one-pass and two-pass encoding, respectively, 2.6 +while the one-pass mode is known as being broken and not offering 2.7 +effective control over the target bitrate.
3.1 --- a/libvpx/receipt Mon Feb 14 14:14:23 2022 +0000 3.2 +++ b/libvpx/receipt Mon Feb 14 15:32:45 2022 +0100 3.3 @@ -1,7 +1,7 @@ 3.4 # SliTaz package receipt. 3.5 3.6 PACKAGE="libvpx" 3.7 -VERSION="1.8.2" 3.8 +VERSION="1.11.0" 3.9 CATEGORY="multimedia" 3.10 SHORT_DESC="The VP8 Codec SDK." 3.11 MAINTAINER="slaxemulator@gmail.com" 3.12 @@ -11,8 +11,8 @@ 3.13 TARBALL="$PACKAGE-v$VERSION.tar.gz" 3.14 WGET_URL="https://github.com/webmproject/$PACKAGE/archive/v$VERSION.tar.gz" 3.15 3.16 -DEPENDS="glibc-base" 3.17 -BUILD_DEPENDS="coreutils-file-format diffutils yasm" 3.18 +DEPENDS="gcc83-lib-base glibc-base" 3.19 +BUILD_DEPENDS="coreutils-file-format diffutils gcc83 yasm" 3.20 3.21 current_version() 3.22 { 3.23 @@ -23,6 +23,9 @@ 3.24 # Rules to configure and make the package. 3.25 compile_rules() 3.26 { 3.27 + export CC=gcc-83 3.28 + export CXX=g++-83 3.29 + 3.30 ./configure \ 3.31 --enable-vp8 \ 3.32 --enable-runtime-cpu-detect \ 3.33 @@ -31,15 +34,13 @@ 3.34 --enable-pic \ 3.35 --disable-install-docs \ 3.36 --disable-install-srcs && 3.37 - make -j 1 && 3.38 - make DIST_DIR=$DESTDIR/usr install 3.39 + make && 3.40 + make install DIST_DIR=$DESTDIR/usr 3.41 } 3.42 3.43 # Rules to gen a SliTaz package suitable for Tazpkg. 3.44 genpkg_rules() 3.45 { 3.46 - mkdir -p $fs/usr/lib 3.47 - 3.48 - cp -a $install/usr/bin $fs/usr 3.49 - cp -a $install/usr/lib/*.so* $fs/usr/lib 3.50 + cook_copy_folders bin 3.51 + cook_copy_files *.so* 3.52 }