wok annotate lame/receipt @ rev 13944

xorg-xauth: add common path (thanks mojo)
author Pascal Bellard <pascal.bellard@slitaz.org>
date Tue Jan 29 09:43:35 2013 +0100 (2013-01-29)
parents 34057f29b149
children a00bf44ed23d
rev   line source
pankso@144 1 # SliTaz package receipt.
pankso@144 2
pankso@144 3 PACKAGE="lame"
slaxemulator@12377 4 VERSION="3.99.4"
pankso@206 5 CATEGORY="multimedia"
pankso@144 6 SHORT_DESC="MPEG Audio Layer III (MP3) encoder."
pankso@144 7 MAINTAINER="pankso@slitaz.org"
slaxemulator@12377 8 LICENSE="LGPL"
slaxemulator@6227 9 TARBALL="$PACKAGE-$VERSION.tar.gz"
pascal@2479 10 DEPENDS="ncurses"
pascal@1439 11 BUILD_DEPENDS="gtk+-dev ncurses-dev"
pankso@144 12 WEB_SITE="http://lame.sourceforge.net/"
pankso@144 13 WGET_URL="$SF_MIRROR/$PACKAGE/$TARBALL"
pankso@144 14
pankso@144 15 # Rules to configure and make the package.
pankso@144 16 compile_rules()
pankso@144 17 {
pankso@144 18 cd $src
pankso@144 19 ./configure \
pankso@144 20 --prefix=/usr \
pankso@144 21 --infodir=/usr/share/info \
pankso@144 22 --mandir=/usr/share/man \
pascal@1439 23 $CONFIGURE_ARGS &&
pascal@1439 24 make &&
slaxemulator@11159 25 make DESTDIR=$DESTDIR install
pankso@144 26 }
pankso@144 27
pankso@144 28 # Rules to gen a SliTaz package suitable for Tazpkg.
pankso@144 29 genpkg_rules()
pankso@144 30 {
pankso@144 31 mkdir -p $fs/usr/lib
pankso@144 32 cp -a $_pkg/usr/lib/*.so* $fs/usr/lib
pankso@144 33 cp -a $_pkg/usr/bin $fs/usr
pankso@144 34 }