wok rev 24298

updated taglib and taglib-dev (1.11.1 -> 1.12)
author Hans-G?nter Theisgen
date Sat Jan 15 15:21:20 2022 +0100 (2022-01-15)
parents e2d7785559f5
children ac8ca9758df1
files taglib-dev/receipt taglib/description.txt taglib/receipt
line diff
     1.1 --- a/taglib-dev/receipt	Sat Jan 15 13:48:03 2022 +0100
     1.2 +++ b/taglib-dev/receipt	Sat Jan 15 15:21:20 2022 +0100
     1.3 @@ -1,7 +1,7 @@
     1.4  # SliTaz package receipt.
     1.5  
     1.6  PACKAGE="taglib-dev"
     1.7 -VERSION="1.11.1"
     1.8 +VERSION="1.12"
     1.9  CATEGORY="development"
    1.10  SHORT_DESC="Taglib - development files."
    1.11  MAINTAINER="pankso@slitaz.org"
    1.12 @@ -16,11 +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/pkgconfig	$fs/usr/lib
    1.19 -	cp -a $install/usr/include		$fs/usr
    1.20 -	cp -a $install/usr/bin			$fs/usr
    1.21 -
    1.22 -	chmod +x $fs/usr/bin/*
    1.23 +	cook_copy_folders	bin
    1.24 +	cook_copy_folders	include
    1.25 +	cook_copy_folders	pkgconfig
    1.26  }
     2.1 --- /dev/null	Thu Jan 01 00:00:00 1970 +0000
     2.2 +++ b/taglib/description.txt	Sat Jan 15 15:21:20 2022 +0100
     2.3 @@ -0,0 +1,5 @@
     2.4 +TagLib is a library for reading and editing the meta-data of several
     2.5 +popular audio formats.
     2.6 +Currently it supports both ID3v1 and ID3v2 for MP3 files, Ogg Vorbis
     2.7 +comments and ID3 tags and Vorbis comments in FLAC, MPC, Speex, WavPack,
     2.8 +TrueAudio, WAV, AIFF, MP4 and ASF files.
     3.1 --- a/taglib/receipt	Sat Jan 15 13:48:03 2022 +0100
     3.2 +++ b/taglib/receipt	Sat Jan 15 15:21:20 2022 +0100
     3.3 @@ -1,7 +1,7 @@
     3.4  # SliTaz package receipt.
     3.5  
     3.6  PACKAGE="taglib"
     3.7 -VERSION="1.11.1"
     3.8 +VERSION="1.12"
     3.9  CATEGORY="multimedia"
    3.10  TAGS="multimedia music tag"
    3.11  SHORT_DESC="Audio tag library."
    3.12 @@ -24,14 +24,14 @@
    3.13  # Rules to configure and make the package.
    3.14  compile_rules()
    3.15  {
    3.16 -	mkdir build &&
    3.17 -	cd build &&
    3.18 +	mkdir	_build &&
    3.19 +	cd	_build &&
    3.20  	cmake	..				\
    3.21 -		-DCMAKE_INSTALL_PREFIX=/usr	\
    3.22 -		-DCMAKE_BUILD_TYPE=Release	\
    3.23 -		-DBUILD_SHARED_LIBS=ON		\
    3.24 -		-DWITH_MP4=ON			\
    3.25 -		-DWITH_ASF=ON &&
    3.26 +		-D CMAKE_INSTALL_PREFIX=/usr	\
    3.27 +		-D CMAKE_BUILD_TYPE=Release	\
    3.28 +		-D BUILD_SHARED_LIBS=ON		\
    3.29 +		-D WITH_MP4=ON			\
    3.30 +		-D WITH_ASF=ON &&
    3.31  	make VERBOSE=1 &&
    3.32  	make install
    3.33  }
    3.34 @@ -39,6 +39,5 @@
    3.35  # Rules to gen a SliTaz package suitable for Tazpkg.
    3.36  genpkg_rules()
    3.37  {
    3.38 -	mkdir -p $fs/usr/lib
    3.39 -	cp -a $install/usr/lib/*.so*	$fs/usr/lib
    3.40 +	cook_copy_files	*.so*
    3.41  }