wok view lame/receipt @ rev 12239

ocsinventory-agent: update bdeps
author Pascal Bellard <pascal.bellard@slitaz.org>
date Mon Apr 09 15:13:59 2012 +0200 (2012-04-09)
parents 5799b906dd32
children 3d1ea792d2c3
line source
1 # SliTaz package receipt.
3 PACKAGE="lame"
4 VERSION="3.99"
5 CATEGORY="multimedia"
6 SHORT_DESC="MPEG Audio Layer III (MP3) encoder."
7 MAINTAINER="pankso@slitaz.org"
8 TARBALL="$PACKAGE-$VERSION.tar.gz"
9 DEPENDS="ncurses"
10 BUILD_DEPENDS="gtk+-dev ncurses-dev"
11 WEB_SITE="http://lame.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=$DESTDIR install
25 }
27 # Rules to gen a SliTaz package suitable for Tazpkg.
28 genpkg_rules()
29 {
30 mkdir -p $fs/usr/lib
31 cp -a $_pkg/usr/lib/*.so* $fs/usr/lib
32 cp -a $_pkg/usr/bin $fs/usr
33 }