wok diff libvpx/receipt @ rev 25462
ufraw: include exiv2/error.hpp in ufraw_exiv2.cc
author | Pascal Bellard <pascal.bellard@slitaz.org> |
---|---|
date | Wed Sep 28 10:52:41 2022 +0000 (2022-09-28) |
parents | ac8ca9758df1 |
children | 7a8b9cd09212 |
line diff
1.1 --- a/libvpx/receipt Sat Jan 15 15:21:40 2022 +0000 1.2 +++ b/libvpx/receipt Wed Sep 28 10:52:41 2022 +0000 1.3 @@ -1,7 +1,7 @@ 1.4 # SliTaz package receipt. 1.5 1.6 PACKAGE="libvpx" 1.7 -VERSION="1.8.2" 1.8 +VERSION="1.11.0" 1.9 CATEGORY="multimedia" 1.10 SHORT_DESC="The VP8 Codec SDK." 1.11 MAINTAINER="slaxemulator@gmail.com" 1.12 @@ -11,8 +11,8 @@ 1.13 TARBALL="$PACKAGE-v$VERSION.tar.gz" 1.14 WGET_URL="https://github.com/webmproject/$PACKAGE/archive/v$VERSION.tar.gz" 1.15 1.16 -DEPENDS="glibc-base" 1.17 -BUILD_DEPENDS="coreutils-file-format diffutils yasm" 1.18 +DEPENDS="gcc83-lib-base glibc-base" 1.19 +BUILD_DEPENDS="coreutils-file-format diffutils gcc83 yasm" 1.20 1.21 current_version() 1.22 { 1.23 @@ -23,6 +23,9 @@ 1.24 # Rules to configure and make the package. 1.25 compile_rules() 1.26 { 1.27 + export CC=gcc-83 1.28 + export CXX=g++-83 1.29 + 1.30 ./configure \ 1.31 --enable-vp8 \ 1.32 --enable-runtime-cpu-detect \ 1.33 @@ -31,15 +34,13 @@ 1.34 --enable-pic \ 1.35 --disable-install-docs \ 1.36 --disable-install-srcs && 1.37 - make -j 1 && 1.38 - make DIST_DIR=$DESTDIR/usr install 1.39 + make && 1.40 + make install DIST_DIR=$DESTDIR/usr 1.41 } 1.42 1.43 # Rules to gen a SliTaz package suitable for Tazpkg. 1.44 genpkg_rules() 1.45 { 1.46 - mkdir -p $fs/usr/lib 1.47 - 1.48 - cp -a $install/usr/bin $fs/usr 1.49 - cp -a $install/usr/lib/*.so* $fs/usr/lib 1.50 + cook_copy_folders bin 1.51 + cook_copy_files *.so* 1.52 }