wok-current annotate libsamplerate/receipt @ rev 14718
lib[s-z]*: add LICENSE
author | Pascal Bellard <pascal.bellard@slitaz.org> |
---|---|
date | Tue Jun 11 11:57:36 2013 +0200 (2013-06-11) |
parents | a41e67c53243 |
children | f9588901ecdc |
rev | line source |
---|---|
pankso@295 | 1 # SliTaz package receipt. |
pankso@295 | 2 |
pankso@295 | 3 PACKAGE="libsamplerate" |
slaxemulator@12385 | 4 VERSION="0.1.8" |
pankso@295 | 5 CATEGORY="multimedia" |
pankso@295 | 6 SHORT_DESC="Sample Rate Converter for audio." |
pankso@295 | 7 MAINTAINER="pankso@slitaz.org" |
pascal@14718 | 8 LICENSE="GPL2" |
pankso@295 | 9 TARBALL="$PACKAGE-$VERSION.tar.gz" |
pankso@295 | 10 WEB_SITE="http://www.mega-nerd.com/SRC/" |
pankso@295 | 11 WGET_URL="http://www.mega-nerd.com/SRC/$TARBALL" |
pankso@295 | 12 |
pascal@14718 | 13 DEPENDS="libsndfile libogg" |
pascal@14718 | 14 |
pankso@295 | 15 # Rules to configure and make the package. |
pankso@295 | 16 compile_rules() |
pankso@295 | 17 { |
pankso@295 | 18 cd $src |
pankso@295 | 19 ./configure \ |
pankso@295 | 20 --prefix=/usr \ |
pankso@295 | 21 --mandir=/usr/share/man \ |
pascal@5003 | 22 $CONFIGURE_ARGS && |
pascal@5003 | 23 make && |
slaxemulator@12385 | 24 make DESTDIR=$DESTDIR install |
pankso@295 | 25 } |
pankso@295 | 26 |
pankso@295 | 27 # Rules to gen a SliTaz package suitable for Tazpkg. |
pankso@295 | 28 genpkg_rules() |
pankso@295 | 29 { |
pankso@295 | 30 mkdir -p $fs/usr/lib |
pascal@14718 | 31 cp -a $install/usr/bin $fs/usr |
pascal@14718 | 32 cp -a $install/usr/lib/*.so* $fs/usr/lib |
pankso@295 | 33 } |
pankso@295 | 34 |