wok-next view easytag/receipt @ rev 20785

gpgme: add gnupg, since build can not find gpgconf and gpg
author Erkan Yilmaz <erkan@slitaz.org>
date Sat Jun 09 07:02:52 2018 +0000 (2018-06-09)
parents 7bb67a9e6b53
children a20a093a9790
line source
1 # SliTaz package receipt.
3 PACKAGE="easytag"
4 VERSION="2.2.6"
5 CATEGORY="multimedia"
6 SHORT_DESC="Utility for viewing and editing tags on sound files."
7 MAINTAINER="pankso@slitaz.org"
8 LICENSE="GPL2"
9 TARBALL="$PACKAGE-$VERSION.tar.xz"
10 WEB_SITE="https://wiki.gnome.org/Apps/EasyTAG"
11 WGET_URL="https://download.gnome.org/sources/$PACKAGE/${VERSION%.*}/$TARBALL"
12 TAGS="audio"
14 DEPENDS="gtk+ id3lib flac libvorbis xorg-libXdamage gcc-lib-base libid3tag"
15 BUILD_DEPENDS="gtk+-dev id3lib-dev id3lib expat-dev libid3tag-dev itstool \
16 intltool"
18 # Rules to configure and make the package.
19 compile_rules()
20 {
21 cd $src
22 ./configure \
23 --prefix=/usr \
24 $CONFIGURE_ARGS &&
25 make -j1 &&
26 make -j1 DESTDIR=$DESTDIR install
27 }
29 # Rules to gen a SliTaz package suitable for Tazpkg.
30 genpkg_rules()
31 {
32 mkdir -p $fs/usr/share/icons/hicolor
33 cp -a $install/usr/bin $fs/usr
34 cp -a $install/usr/share/applications $fs/usr/share
35 cp -a $install/usr/share/icons/hicolor/16x16 $install/usr/share/icons/hicolor/48x48 \
36 $fs/usr/share/icons/hicolor
37 }