wok view audacity/receipt @ rev 3213

pan: update build_depends
author Pascal Bellard <pascal.bellard@slitaz.org>
date Thu May 28 11:47:11 2009 +0200 (2009-05-28)
parents
children d9156c869d28
line source
1 # SliTaz package receipt.
3 PACKAGE="audacity"
4 VERSION="1.3.7"
5 CATEGORY="multimedia"
6 SHORT_DESC="software for recording and editing sounds"
7 MAINTAINER="allan316@gmail.com"
8 DEPENDS="wxWidgets ffmpeg libvorbis imlib2 libid3tag libmad flac libsndfile lame alsa-lib"
9 BUILD_DEPENDS="wxWidgets-dev ffmpeg-dev libvorbis-dev libmad-dev flac-dev libsndfile-dev lame-dev alsa-lib-dev"
10 TARBALL="$PACKAGE-minsrc-$VERSION.tar.bz2"
11 WEB_SITE="http://audacity.sourceforge.net"
12 WGET_URL="http://nchc.dl.sourceforge.net/sourceforge/audacity/$TARBALL"
14 # Rules to configure and make the package.
15 compile_rules()
16 {
17 local src=$PACKAGE-src-$VERSION
18 cd $src
19 ./configure \
20 --prefix=/usr \
21 --infodir=/usr/share/info \
22 --mandir=/usr/share/man \
23 $CONFIGURE_ARGS &&
24 make && make DESTDIR=$PWD/_pkg install
25 }
27 # Rules to gen a SliTaz package suitable for Tazpkg.
28 genpkg_rules()
29 {
30 local _pkg=$WOK/$PACKAGE/$PACKAGE-src-$VERSION/_pkg
31 echo $_pkg
32 mkdir -p $fs/usr $fs/usr/share
33 cp -a $_pkg/usr/bin $fs/usr
34 cp -a $_pkg/usr/share/applications $fs/usr/share
35 }