wok view audacity/receipt @ rev 3264

audacity: Fix build (--without-ffmpeg)
author Christophe Lincoln <pankso@slitaz.org>
date Mon Jun 01 23:19:50 2009 +0200 (2009-06-01)
parents d9156c869d28
children c616ce6b7873
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 \
9 lame alsa-lib"
10 BUILD_DEPENDS="wxWidgets-dev ffmpeg-dev libvorbis-dev libmad-dev flac-dev \
11 libsndfile-dev lame-dev alsa-lib-dev"
12 TARBALL="$PACKAGE-fullsrc-$VERSION.tar.bz2"
13 WEB_SITE="http://audacity.sourceforge.net"
14 WGET_URL="http://nchc.dl.sourceforge.net/sourceforge/audacity/$TARBALL"
16 # Rules to configure and make the package.
17 compile_rules()
18 {
19 mv $PACKAGE-src-$VERSION $PACKAGE-$VERSION 2>/dev/null
20 cd $src
21 ./configure \
22 --prefix=/usr \
23 --infodir=/usr/share/info \
24 --mandir=/usr/share/man \
25 --without-ffmpeg \
26 $CONFIGURE_ARGS &&
27 make && make DESTDIR=$PWD/_pkg install
28 }
30 # Rules to gen a SliTaz package suitable for Tazpkg.
31 genpkg_rules()
32 {
33 mkdir -p $fs/usr $fs/usr/share
34 cp -a $_pkg/usr/bin $fs/usr
35 cp -a $_pkg/usr/share/applications $fs/usr/share
36 }