wok rev 24553

updated flac and flac-dev (1.3.3 -> 1.3.4)
author Hans-G?nter Theisgen
date Fri Feb 25 11:10:06 2022 +0100 (2022-02-25)
parents b15d3d872ae2
children 0d34e58f2fb5
files flac-dev/receipt flac/description.txt flac/receipt
line diff
     1.1 --- a/flac-dev/receipt	Fri Feb 25 09:51:38 2022 +0100
     1.2 +++ b/flac-dev/receipt	Fri Feb 25 11:10:06 2022 +0100
     1.3 @@ -1,7 +1,7 @@
     1.4  # SliTaz package receipt.
     1.5  
     1.6  PACKAGE="flac-dev"
     1.7 -VERSION="1.3.3"
     1.8 +VERSION="1.3.4"
     1.9  CATEGORY="development"
    1.10  SHORT_DESC="Free Lossless Audio Codec - development files."
    1.11  MAINTAINER="pankso@slitaz.org"
    1.12 @@ -16,9 +16,7 @@
    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/lib/*.*a		$fs/usr/lib
    1.19 -	cp -a $install/usr/lib/pkgconfig	$fs/usr/lib
    1.20 -	cp -a $install/usr/include		$fs/usr
    1.21 +	cook_copy_folders	include
    1.22 +	cook_copy_folders	pkgconfig
    1.23 +	cook_copy_files		*.*a
    1.24  }
     2.1 --- /dev/null	Thu Jan 01 00:00:00 1970 +0000
     2.2 +++ b/flac/description.txt	Fri Feb 25 11:10:06 2022 +0100
     2.3 @@ -0,0 +1,8 @@
     2.4 +FLAC stands for Free Lossless Audio Codec, an audio format similar
     2.5 +to MP3, but lossless, meaning that audio is compressed in FLAC
     2.6 +without any loss in quality.
     2.7 +This is similar to how Zip works, except with FLAC you will get
     2.8 +much better compression because it is designed specifically for
     2.9 +audio, and you can play back compressed FLAC files in your favorite
    2.10 +player (or your car or home stereo, see supported devices) just
    2.11 +like you would an MP3 file.
     3.1 --- a/flac/receipt	Fri Feb 25 09:51:38 2022 +0100
     3.2 +++ b/flac/receipt	Fri Feb 25 11:10:06 2022 +0100
     3.3 @@ -1,7 +1,7 @@
     3.4  # SliTaz package receipt.
     3.5  
     3.6  PACKAGE="flac"
     3.7 -VERSION="1.3.3"
     3.8 +VERSION="1.3.4"
     3.9  CATEGORY="multimedia"
    3.10  TAGS="codec audio"
    3.11  SHORT_DESC="Free Lossless Audio Codec."
    3.12 @@ -12,8 +12,8 @@
    3.13  TARBALL="$PACKAGE-$VERSION.tar.xz"
    3.14  WGET_URL="https://downloads.xiph.org/releases/$PACKAGE/$TARBALL"
    3.15  
    3.16 -DEPENDS="gcc-lib-base libogg"
    3.17 -BUILD_DEPENDS="libogg-dev"
    3.18 +DEPENDS="gcc83-lib-base libogg"
    3.19 +BUILD_DEPENDS="gcc83 libogg-dev"
    3.20  
    3.21  HOST_ARCH="i486 arm"
    3.22  
    3.23 @@ -31,18 +31,17 @@
    3.24  #	busybox patch -p0 -i $stuff/flac-1.2.1_gcc4.u
    3.25  
    3.26  	./configure			\
    3.27 +		CC=gcc-83		\
    3.28  		--prefix=/usr		\
    3.29  		--mandir=/usr/share/man	\
    3.30  		$CONFIGURE_ARGS &&
    3.31  	make &&
    3.32 -	make DESTDIR=$DESTDIR install
    3.33 +	make install DESTDIR=$DESTDIR
    3.34  }
    3.35  
    3.36  # Rules to gen a SliTaz package suitable for Tazpkg.
    3.37  genpkg_rules()
    3.38  {
    3.39 -	mkdir -p $fs/usr/lib
    3.40 -
    3.41 -	cp -a $install/usr/bin		$fs/usr
    3.42 -	cp -a $install/usr/lib/*.so*	$fs/usr/lib 
    3.43 +	cook_copy_folders	bin
    3.44 +	cook_copy_files		*.so*
    3.45  }