wok view lame/receipt @ rev 2455

py3k pycairo pygobject pygtk python-lxml python: update depends
author Pascal Bellard <pascal.bellard@slitaz.org>
date Sat Mar 14 07:28:53 2009 +0000 (2009-03-14)
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 }