# HG changeset patch # User Hans-G?nter Theisgen # Date 1644849165 -3600 # Node ID 70cb1291f70ba4faed3be059abd9f935d69c1a03 # Parent af8d823a3077175b78996f3ba7ce07e49fcc0acf updated libvpx and libvpx-dev (1.8.2 -> 1.11.0) diff -r af8d823a3077 -r 70cb1291f70b libvpx-dev/receipt --- a/libvpx-dev/receipt Mon Feb 14 14:14:23 2022 +0000 +++ b/libvpx-dev/receipt Mon Feb 14 15:32:45 2022 +0100 @@ -1,7 +1,7 @@ # SliTaz package receipt. PACKAGE="libvpx-dev" -VERSION="1.8.2" +VERSION="1.11.0" CATEGORY="development" SHORT_DESC="Development files for libvpx." MAINTAINER="slaxemulator@gmail.com" @@ -14,10 +14,8 @@ # Rules to gen a SliTaz package suitable for Tazpkg. genpkg_rules() { - mkdir -p $fs/usr/lib - - cp -a $install/usr/include $fs/usr - cp -a $install/usr/lib/*.*a $fs/usr/lib - cp -a $install/usr/lib/pkgconfig $fs/usr/lib + cook_copy_folders include + cook_copy_folders pkgconfig + cook_copy_files *.*a } diff -r af8d823a3077 -r 70cb1291f70b libvpx/description.txt --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/libvpx/description.txt Mon Feb 14 15:32:45 2022 +0100 @@ -0,0 +1,4 @@ +Lipvpx is a reference implementation of a VP8 (and VP9) codec. +It has a mode for one-pass and two-pass encoding, respectively, +while the one-pass mode is known as being broken and not offering +effective control over the target bitrate. diff -r af8d823a3077 -r 70cb1291f70b libvpx/receipt --- a/libvpx/receipt Mon Feb 14 14:14:23 2022 +0000 +++ b/libvpx/receipt Mon Feb 14 15:32:45 2022 +0100 @@ -1,7 +1,7 @@ # SliTaz package receipt. PACKAGE="libvpx" -VERSION="1.8.2" +VERSION="1.11.0" CATEGORY="multimedia" SHORT_DESC="The VP8 Codec SDK." MAINTAINER="slaxemulator@gmail.com" @@ -11,8 +11,8 @@ TARBALL="$PACKAGE-v$VERSION.tar.gz" WGET_URL="https://github.com/webmproject/$PACKAGE/archive/v$VERSION.tar.gz" -DEPENDS="glibc-base" -BUILD_DEPENDS="coreutils-file-format diffutils yasm" +DEPENDS="gcc83-lib-base glibc-base" +BUILD_DEPENDS="coreutils-file-format diffutils gcc83 yasm" current_version() { @@ -23,6 +23,9 @@ # Rules to configure and make the package. compile_rules() { + export CC=gcc-83 + export CXX=g++-83 + ./configure \ --enable-vp8 \ --enable-runtime-cpu-detect \ @@ -31,15 +34,13 @@ --enable-pic \ --disable-install-docs \ --disable-install-srcs && - make -j 1 && - make DIST_DIR=$DESTDIR/usr install + make && + make install DIST_DIR=$DESTDIR/usr } # Rules to gen a SliTaz package suitable for Tazpkg. genpkg_rules() { - mkdir -p $fs/usr/lib - - cp -a $install/usr/bin $fs/usr - cp -a $install/usr/lib/*.so* $fs/usr/lib + cook_copy_folders bin + cook_copy_files *.so* }