wok-next annotate easytag/receipt @ rev 18465
libQtDBus: add /usr/bin/qdbus
author | Xander Ziiryanoff <psychomaniak@xakep.ru> |
---|---|
date | Fri Oct 02 13:31:38 2015 +0200 (2015-10-02) |
parents | c3255426e227 |
children | 7bb67a9e6b53 |
rev | line source |
---|---|
pankso@293 | 1 # SliTaz package receipt. |
pankso@293 | 2 |
pankso@293 | 3 PACKAGE="easytag" |
slaxemulator@6235 | 4 VERSION="2.1.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" |
pankso@293 | 9 TARBALL="$PACKAGE-$VERSION.tar.bz2" |
pankso@293 | 10 WEB_SITE="http://easytag.sourceforge.net/" |
pankso@293 | 11 WGET_URL="$SF_MIRROR/$PACKAGE/$TARBALL" |
jozee@4935 | 12 TAGS="audio" |
pankso@293 | 13 |
erjo@11600 | 14 DEPENDS="gtk+ id3lib flac libvorbis xorg-libXdamage gcc-lib-base libid3tag" |
erjo@11600 | 15 BUILD_DEPENDS="gtk+-dev id3lib-dev id3lib expat-dev libid3tag-dev" |
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 \ |
pankso@293 | 23 --mandir=/usr/share/man \ |
pascal@1481 | 24 $CONFIGURE_ARGS && |
slaxemulator@8712 | 25 make -j1 && |
pascal@15000 | 26 make -j1 DESTDIR=$DESTDIR install |
pankso@293 | 27 } |
pankso@293 | 28 |
pankso@293 | 29 # Rules to gen a SliTaz package suitable for Tazpkg. |
pankso@293 | 30 genpkg_rules() |
pankso@293 | 31 { |
pankso@293 | 32 mkdir -p $fs/usr/share |
pascal@15000 | 33 cp -a $install/usr/bin $fs/usr |
pascal@15000 | 34 cp -a $install/usr/share/pixmaps $fs/usr/share |
pankso@293 | 35 } |
pankso@293 | 36 |