wok-6.x diff easytag/receipt @ rev 23282
updated pcre2 and pcre2-dev (10.32 -> 10.34)
author | Hans-G?nter Theisgen |
---|---|
date | Sun Mar 29 10:35:37 2020 +0100 (2020-03-29) |
parents | 7bb67a9e6b53 |
children | 6831608a1b2a |
line diff
1.1 --- a/easytag/receipt Wed Oct 07 13:34:45 2015 +0300 1.2 +++ b/easytag/receipt Sun Mar 29 10:35:37 2020 +0100 1.3 @@ -1,37 +1,39 @@ 1.4 # SliTaz package receipt. 1.5 1.6 PACKAGE="easytag" 1.7 -VERSION="2.2.6" 1.8 +VERSION="2.4.3" 1.9 CATEGORY="multimedia" 1.10 +TAGS="audio" 1.11 SHORT_DESC="Utility for viewing and editing tags on sound files." 1.12 MAINTAINER="pankso@slitaz.org" 1.13 LICENSE="GPL2" 1.14 +WEB_SITE="https://wiki.gnome.org/Apps/EasyTAG" 1.15 + 1.16 TARBALL="$PACKAGE-$VERSION.tar.xz" 1.17 -WEB_SITE="https://wiki.gnome.org/Apps/EasyTAG" 1.18 WGET_URL="https://download.gnome.org/sources/$PACKAGE/${VERSION%.*}/$TARBALL" 1.19 -TAGS="audio" 1.20 1.21 -DEPENDS="gtk+ id3lib flac libvorbis xorg-libXdamage gcc-lib-base libid3tag" 1.22 -BUILD_DEPENDS="gtk+-dev id3lib-dev id3lib expat-dev libid3tag-dev itstool" 1.23 +DEPENDS="flac gcc-lib-base gtk+3 id3lib libid3tag libvorbis xorg-libXdamage" 1.24 +BUILD_DEPENDS="expat-dev gtk+3-dev id3lib id3lib-dev itstool libid3tag-dev" 1.25 1.26 # Rules to configure and make the package. 1.27 compile_rules() 1.28 { 1.29 - cd $src 1.30 - ./configure \ 1.31 - --prefix=/usr \ 1.32 + ./configure \ 1.33 + --prefix=/usr \ 1.34 $CONFIGURE_ARGS && 1.35 - make -j1 && 1.36 - make -j1 DESTDIR=$DESTDIR install 1.37 + make && 1.38 + make DESTDIR=$DESTDIR install 1.39 } 1.40 1.41 # Rules to gen a SliTaz package suitable for Tazpkg. 1.42 genpkg_rules() 1.43 { 1.44 mkdir -p $fs/usr/share/icons/hicolor 1.45 - cp -a $install/usr/bin $fs/usr 1.46 - cp -a $install/usr/share/applications $fs/usr/share 1.47 - cp -a $install/usr/share/icons/hicolor/16x16 $install/usr/share/icons/hicolor/48x48 \ 1.48 - $fs/usr/share/icons/hicolor 1.49 + 1.50 + cp -a $install/usr/bin $fs/usr 1.51 + cp -a $install/usr/share/applications $fs/usr/share 1.52 + cp -a $install/usr/share/icons/hicolor/16x16 \ 1.53 + $fs/usr/share/icons/hicolor 1.54 + cp -a $install/usr/share/icons/hicolor/48x48 \ 1.55 + $fs/usr/share/icons/hicolor 1.56 } 1.57 -