wok annotate easytag/receipt @ rev 18746

marble: one desktop entry only
author Pascal Bellard <pascal.bellard@slitaz.org>
date Sat Dec 26 11:26:22 2015 +0100 (2015-12-26)
parents 380ffe05937a
children bc6263eb0ffe
rev   line source
pankso@293 1 # SliTaz package receipt.
pankso@293 2
pankso@293 3 PACKAGE="easytag"
al@18477 4 VERSION="2.2.6"
pankso@293 5 CATEGORY="multimedia"
pankso@293 6 SHORT_DESC="Utility for viewing and editing tags on sound files."
pankso@293 7 MAINTAINER="pankso@slitaz.org"
pascal@15000 8 LICENSE="GPL2"
al@18477 9 TARBALL="$PACKAGE-$VERSION.tar.xz"
al@18477 10 WEB_SITE="https://wiki.gnome.org/Apps/EasyTAG"
al@18477 11 WGET_URL="https://download.gnome.org/sources/$PACKAGE/${VERSION%.*}/$TARBALL"
jozee@4935 12 TAGS="audio"
pankso@293 13
erjo@11600 14 DEPENDS="gtk+ id3lib flac libvorbis xorg-libXdamage gcc-lib-base libid3tag"
al@18477 15 BUILD_DEPENDS="gtk+-dev id3lib-dev id3lib expat-dev libid3tag-dev itstool"
erjo@11600 16
pankso@293 17 # Rules to configure and make the package.
pankso@293 18 compile_rules()
pankso@293 19 {
pankso@293 20 cd $src
pankso@293 21 ./configure \
pankso@293 22 --prefix=/usr \
pascal@1481 23 $CONFIGURE_ARGS &&
slaxemulator@8712 24 make -j1 &&
pascal@15000 25 make -j1 DESTDIR=$DESTDIR install
pankso@293 26 }
pankso@293 27
pankso@293 28 # Rules to gen a SliTaz package suitable for Tazpkg.
pankso@293 29 genpkg_rules()
pankso@293 30 {
al@18477 31 mkdir -p $fs/usr/share/icons/hicolor
pascal@15000 32 cp -a $install/usr/bin $fs/usr
al@18477 33 cp -a $install/usr/share/applications $fs/usr/share
al@18477 34 cp -a $install/usr/share/icons/hicolor/16x16 $install/usr/share/icons/hicolor/48x48 \
al@18477 35 $fs/usr/share/icons/hicolor
pankso@293 36 }
pankso@293 37