wok view lame/receipt @ rev 2093

slitaz-configs: up DEPENDS for 1.0 to 2.0 upgrade (new desktop)
author Christophe Lincoln <pankso@slitaz.org>
date Wed Jan 28 18:57:20 2009 +0100 (2009-01-28)
parents 3e8ffa6ff731
children 55b1ac33b9c7
line source
1 # SliTaz package receipt.
3 PACKAGE="lame"
4 VERSION="3.98.2"
5 CATEGORY="multimedia"
6 SHORT_DESC="MPEG Audio Layer III (MP3) encoder."
7 MAINTAINER="pankso@slitaz.org"
8 TARBALL="$PACKAGE-398-2.tar.gz"
9 BUILD_DEPENDS="gtk+-dev ncurses-dev"
10 WEB_SITE="http://lame.sourceforge.net/"
11 WGET_URL="$SF_MIRROR/$PACKAGE/$TARBALL"
13 # Rules to configure and make the package.
14 compile_rules()
15 {
16 mv lame-398-2 $src 2>/dev/null
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/lib
31 cp -a $_pkg/usr/lib/*.so* $fs/usr/lib
32 cp -a $_pkg/usr/bin $fs/usr
33 }