# HG changeset patch # User Hans-G?nter Theisgen # Date 1642256480 -3600 # Node ID 63de22f6cf265f270967419069a8193696935fcb # Parent e2d7785559f55dbad32cb9a2db9bdd4e160e7af7 updated taglib and taglib-dev (1.11.1 -> 1.12) diff -r e2d7785559f5 -r 63de22f6cf26 taglib-dev/receipt --- a/taglib-dev/receipt Sat Jan 15 13:48:03 2022 +0100 +++ b/taglib-dev/receipt Sat Jan 15 15:21:20 2022 +0100 @@ -1,7 +1,7 @@ # SliTaz package receipt. PACKAGE="taglib-dev" -VERSION="1.11.1" +VERSION="1.12" CATEGORY="development" SHORT_DESC="Taglib - development files." MAINTAINER="pankso@slitaz.org" @@ -16,11 +16,7 @@ # Rules to gen a SliTaz package suitable for Tazpkg. genpkg_rules() { - mkdir -p $fs/usr/lib - - cp -a $install/usr/lib/pkgconfig $fs/usr/lib - cp -a $install/usr/include $fs/usr - cp -a $install/usr/bin $fs/usr - - chmod +x $fs/usr/bin/* + cook_copy_folders bin + cook_copy_folders include + cook_copy_folders pkgconfig } diff -r e2d7785559f5 -r 63de22f6cf26 taglib/description.txt --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/taglib/description.txt Sat Jan 15 15:21:20 2022 +0100 @@ -0,0 +1,5 @@ +TagLib is a library for reading and editing the meta-data of several +popular audio formats. +Currently it supports both ID3v1 and ID3v2 for MP3 files, Ogg Vorbis +comments and ID3 tags and Vorbis comments in FLAC, MPC, Speex, WavPack, +TrueAudio, WAV, AIFF, MP4 and ASF files. diff -r e2d7785559f5 -r 63de22f6cf26 taglib/receipt --- a/taglib/receipt Sat Jan 15 13:48:03 2022 +0100 +++ b/taglib/receipt Sat Jan 15 15:21:20 2022 +0100 @@ -1,7 +1,7 @@ # SliTaz package receipt. PACKAGE="taglib" -VERSION="1.11.1" +VERSION="1.12" CATEGORY="multimedia" TAGS="multimedia music tag" SHORT_DESC="Audio tag library." @@ -24,14 +24,14 @@ # Rules to configure and make the package. compile_rules() { - mkdir build && - cd build && + mkdir _build && + cd _build && cmake .. \ - -DCMAKE_INSTALL_PREFIX=/usr \ - -DCMAKE_BUILD_TYPE=Release \ - -DBUILD_SHARED_LIBS=ON \ - -DWITH_MP4=ON \ - -DWITH_ASF=ON && + -D CMAKE_INSTALL_PREFIX=/usr \ + -D CMAKE_BUILD_TYPE=Release \ + -D BUILD_SHARED_LIBS=ON \ + -D WITH_MP4=ON \ + -D WITH_ASF=ON && make VERBOSE=1 && make install } @@ -39,6 +39,5 @@ # Rules to gen a SliTaz package suitable for Tazpkg. genpkg_rules() { - mkdir -p $fs/usr/lib - cp -a $install/usr/lib/*.so* $fs/usr/lib + cook_copy_files *.so* }