wok-next diff easytag/receipt @ rev 21686

updated glm (0.9.3.2 -> 0.9.9.8)
author Hans-G?nter Theisgen
date Mon Jun 29 16:57:49 2020 +0100 (2020-06-29)
parents fec0eeb8fbaf
children
line diff
     1.1 --- a/easytag/receipt	Wed Oct 11 16:37:14 2017 +0200
     1.2 +++ b/easytag/receipt	Mon Jun 29 16:57:49 2020 +0100
     1.3 @@ -1,38 +1,41 @@
     1.4 -# SliTaz package receipt.
     1.5 +# SliTaz package receipt v2.
     1.6  
     1.7  PACKAGE="easytag"
     1.8 -VERSION="2.2.6"
     1.9 +VERSION="2.4.3"
    1.10  CATEGORY="multimedia"
    1.11 -SHORT_DESC="Utility for viewing and editing tags on sound files."
    1.12 -MAINTAINER="pankso@slitaz.org"
    1.13 +SHORT_DESC="Utility for viewing and editing tags on sound files"
    1.14 +MAINTAINER="al.bobylev@gmail.com"
    1.15  LICENSE="GPL2"
    1.16 +WEB_SITE="https://wiki.gnome.org/Apps/EasyTAG"
    1.17 +
    1.18  TARBALL="$PACKAGE-$VERSION.tar.xz"
    1.19 -WEB_SITE="https://wiki.gnome.org/Apps/EasyTAG"
    1.20 -WGET_URL="https://download.gnome.org/sources/$PACKAGE/${VERSION%.*}/$TARBALL"
    1.21 -TAGS="audio"
    1.22 +WGET_URL="$GNOME_MIRROR/$PACKAGE/${VERSION%.*}/$TARBALL"
    1.23  
    1.24 -DEPENDS="gtk+ id3lib flac libvorbis xorg-libXdamage gcc-lib-base libid3tag"
    1.25 -BUILD_DEPENDS="gtk+-dev id3lib-dev id3lib expat-dev libid3tag-dev itstool \
    1.26 -intltool"
    1.27 +BUILD_DEPENDS="intltool appstream-glib glib-dev gdk-pixbuf-dev libxml2-tools \
    1.28 +libxslt docbook-xml docbook-xsl desktop-file-utils-extra itstool \
    1.29 +yelp-tools-dev gtk3-dev libogg-dev libvorbis-dev opus-dev opusfile-dev \
    1.30 +speex-dev flac-dev libid3tag-dev id3lib-dev taglib-dev wavpack-dev"
    1.31  
    1.32 -# Rules to configure and make the package.
    1.33 -compile_rules()
    1.34 -{
    1.35 -	cd $src
    1.36 +compile_rules() {
    1.37  	./configure \
    1.38 -		--prefix=/usr \
    1.39 +		--enable-mp3 \
    1.40 +		--enable-id3v23 \
    1.41 +		--enable-ogg \
    1.42 +		--enable-opus \
    1.43 +		--enable-speex \
    1.44 +		--enable-flac \
    1.45 +		--enable-mp4 \
    1.46 +		--enable-wavpack \
    1.47  		$CONFIGURE_ARGS &&
    1.48 -	make -j1 &&
    1.49 -	make -j1 DESTDIR=$DESTDIR install
    1.50 +	make &&
    1.51 +	make install || return 1
    1.52 +
    1.53 +	fix symlinks
    1.54  }
    1.55  
    1.56 -# Rules to gen a SliTaz package suitable for Tazpkg.
    1.57 -genpkg_rules()
    1.58 -{
    1.59 -	mkdir -p $fs/usr/share/icons/hicolor
    1.60 -	cp -a $install/usr/bin $fs/usr
    1.61 -	cp -a $install/usr/share/applications $fs/usr/share
    1.62 -	cp -a $install/usr/share/icons/hicolor/16x16 $install/usr/share/icons/hicolor/48x48 \
    1.63 -		$fs/usr/share/icons/hicolor
    1.64 +genpkg_rules() {
    1.65 +	copy @std
    1.66 +	DEPENDS="flac gdk-pixbuf glib gtk3 id3lib libid3tag libogg libvorbis opus \
    1.67 +	opusfile speex taglib wavpack"
    1.68 +	TAGS="audio"
    1.69  }
    1.70 -