wok view audacity/receipt @ rev 13621

audacity: use local ffmpeg
author Pascal Bellard <pascal.bellard@slitaz.org>
date Tue Nov 13 15:37:43 2012 +0100 (2012-11-13)
parents d87f2423c050
children f4c22f009037
line source
1 # SliTaz package receipt.
3 PACKAGE="audacity"
4 VERSION="2.0.2"
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 xorg-libXxf86vm"
10 BUILD_DEPENDS="wxWidgets-dev ffmpeg-dev libvorbis-dev libmad-dev flac-dev \
11 libsndfile-dev lame-dev alsa-lib-dev portaudio-dev"
12 TARBALL="$PACKAGE-minsrc-$VERSION.tar.bz2"
13 WEB_SITE="http://audacity.sourceforge.net"
14 WGET_URL="http://audacity.googlecode.com/files/$TARBALL"
15 TAGS="sound audio recorder editor"
17 # Rules to configure and make the package.
18 compile_rules()
19 {
20 cd $src
21 ./configure \
22 --prefix=/usr \
23 --infodir=/usr/share/info \
24 --mandir=/usr/share/man \
25 --with-ffmpeg=local \
26 $CONFIGURE_ARGS &&
27 make && make DESTDIR=$DESTDIR 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/mime $fs/usr/share
36 cp -a $_pkg/usr/share/icons $fs/usr/share
37 cp -a $_pkg/usr/share/audacity $fs/usr/share
38 cp -a $_pkg/usr/share/pixmaps $fs/usr/share
39 cp -a $_pkg/usr/share/applications $fs/usr/share
40 }