wok view gnomad2/receipt @ rev 2899

Add libusb-compat (Fix build of various packages)
author Christophe Lincoln <pankso@slitaz.org>
date Tue May 05 12:00:37 2009 +0200 (2009-05-05)
parents
children f06cae48d68d
line source
1 # SliTaz package receipt.
3 PACKAGE="gnomad2"
4 VERSION="2.9.4"
5 CATEGORY="multimedia"
6 SHORT_DESC="GTK+ music manager and swiss army knife for the Creative Labs NOMAD and Zen range"
7 MAINTAINER="keupont@no-log.org"
8 DEPENDS="libusb libnjb libid3tag libtag freetype gtk+ glibc"
9 BUILD_DEPENDS="libusb-dev libnjb-dev libid3tag-dev gettext freetype-dev glibc-dev gtk+-dev"
10 TARBALL="$PACKAGE-$VERSION.tar.gz"
11 WEB_SITE="http://gnomad2.sourceforge.net/"
12 WGET_URL="$SF_MIRROR/$PACKAGE/$TARBALL"
14 # Rules to configure and make the package.
15 compile_rules()
16 {
17 cd $src
18 ./configure \
19 --prefix=/usr \
20 --infodir=/usr/share/info \
21 --mandir=/usr/share/man \
22 $CONFIGURE_ARGS &&
23 make &&
24 make DESTDIR=$PWD/_pkg install
25 }
27 # Rules to gen a SliTaz package suitable for Tazpkg.
28 genpkg_rules()
29 {
30 mkdir -p $fs/usr
31 cp -a $_pkg/usr/bin $fs/usr
32 }