wok-next annotate libcddb/receipt @ rev 14356
python-couchdbkit, python-restclient: fix TARBALL
author | Pascal Bellard <pascal.bellard@slitaz.org> |
---|---|
date | Wed Apr 17 12:59:13 2013 +0200 (2013-04-17) |
parents | 2428ff0adf55 |
children | 4904e3d374a9 |
rev | line source |
---|---|
pankso@82 | 1 # SliTaz package receipt. |
pankso@82 | 2 |
pankso@82 | 3 PACKAGE="libcddb" |
slaxemulator@6154 | 4 VERSION="1.3.2" |
pankso@206 | 5 CATEGORY="multimedia" |
pankso@82 | 6 SHORT_DESC="C library to access data on a CDDB server (freedb.org)." |
pankso@82 | 7 MAINTAINER="pankso@slitaz.org" |
pankso@82 | 8 TARBALL="$PACKAGE-$VERSION.tar.bz2" |
pankso@82 | 9 WEB_SITE="http://libcddb.sourceforge.net/" |
pankso@82 | 10 WGET_URL="$SF_MIRROR/$PACKAGE/$TARBALL" |
pankso@82 | 11 |
pankso@82 | 12 # Rules to configure and make the package. |
pankso@82 | 13 compile_rules() |
pankso@82 | 14 { |
pankso@82 | 15 cd $src |
pankso@82 | 16 ./configure \ |
pankso@82 | 17 --prefix=/usr \ |
pankso@82 | 18 --infodir=/usr/share/info \ |
pankso@82 | 19 --mandir=/usr/share/man \ |
pascal@5003 | 20 $CONFIGURE_ARGS && |
pascal@5003 | 21 make && |
slaxemulator@12371 | 22 make DESTDIR=$DESTDIR install |
pankso@82 | 23 } |
pankso@82 | 24 |
pankso@82 | 25 # Rules to gen a SliTaz package suitable for Tazpkg. |
pankso@82 | 26 genpkg_rules() |
pankso@82 | 27 { |
pankso@82 | 28 mkdir -p $fs/usr/lib |
pankso@82 | 29 cp -a $_pkg/usr/lib/*.so* $fs/usr/lib |
pankso@82 | 30 } |