wok-6.x rev 24534
updated faac and faac-dev (1.29.9.2 -> 1.30)
author | Hans-G?nter Theisgen |
---|---|
date | Wed Feb 23 11:28:45 2022 +0100 (2022-02-23) |
parents | 4720f46b580c |
children | 7c0170dd3ecc |
files | faac-dev/receipt faac/description.txt faac/receipt |
line diff
1.1 --- a/faac-dev/receipt Wed Feb 23 11:14:10 2022 +0100 1.2 +++ b/faac-dev/receipt Wed Feb 23 11:28:45 2022 +0100 1.3 @@ -1,7 +1,7 @@ 1.4 # SliTaz package receipt. 1.5 1.6 PACKAGE="faac-dev" 1.7 -VERSION="1.29.9.2" 1.8 +VERSION="1.30" 1.9 CATEGORY="development" 1.10 SHORT_DESC="An open source MPEG-4 and MPEG-2 AAC encoder - development files." 1.11 MAINTAINER="paul@slitaz.org" 1.12 @@ -14,8 +14,6 @@ 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 + cook_copy_folders include 1.21 + cook_copy_files *.*a 1.22 }
2.1 --- /dev/null Thu Jan 01 00:00:00 1970 +0000 2.2 +++ b/faac/description.txt Wed Feb 23 11:28:45 2022 +0100 2.3 @@ -0,0 +1,3 @@ 2.4 +FAAC is an Advanced Audio Coder (MPEG2-AAC, MPEG4-AAC). 2.5 +The goal of FAAC is to explore the possibilities of AAC 2.6 +and exceed the quality of the currently best MP3 encoders.
3.1 --- a/faac/receipt Wed Feb 23 11:14:10 2022 +0100 3.2 +++ b/faac/receipt Wed Feb 23 11:28:45 2022 +0100 3.3 @@ -1,7 +1,7 @@ 3.4 # SliTaz package receipt. 3.5 3.6 PACKAGE="faac" 3.7 -VERSION="1.29.9.2" 3.8 +VERSION="1.30" 3.9 CATEGORY="multimedia" 3.10 TAGS="mp4 mpeg encoder" 3.11 SHORT_DESC="An open source MPEG-4 and MPEG-2 AAC encoder." 3.12 @@ -10,10 +10,10 @@ 3.13 WEB_SITE="https://github.com/knik0/faac" 3.14 3.15 TARBALL="$PACKAGE-$VERSION.tar.gz" 3.16 -WGET_URL="$SF_MIRROR/faac/$TARBALL" 3.17 +WGET_URL="$SF_MIRROR/faac/$PACKAGE-${VERSION/./_}.tar.gz" 3.18 3.19 DEPENDS="gcc83-lib-base" 3.20 -BUILD_DEPENDS="gcc83" 3.21 +BUILD_DEPENDS="autoconf automake gcc83 libtool" 3.22 3.23 # What is the latest version available today? 3.24 current_version() 3.25 @@ -25,10 +25,7 @@ 3.26 # Rules to configure and make the package. 3.27 compile_rules() 3.28 { 3.29 -# cd $src/common/mp4v2 3.30 -# patch -p0 < $stuff/gcc44.patch || return 1 3.31 -# cd ../.. 3.32 - 3.33 + ./bootstrap && 3.34 ./configure \ 3.35 CC=gcc-83 \ 3.36 CXX=g++-83 \ 3.37 @@ -37,14 +34,12 @@ 3.38 --mandir=/usr/share/man \ 3.39 $CONFIGURE_ARGS && 3.40 make && 3.41 - make DESTDIR=$DESTDIR install 3.42 + make install DESTDIR=$DESTDIR 3.43 } 3.44 3.45 # Rules to gen a SliTaz package suitable for Tazpkg. 3.46 genpkg_rules() 3.47 { 3.48 - mkdir -p $fs/usr/lib 3.49 - 3.50 - cp -a $install/usr/bin $fs/usr 3.51 - cp -a $install/usr/lib/*.so* $fs/usr/lib 3.52 + cook_copy_folders bin 3.53 + cook_copy_files *.so* 3.54 }