wok view audacity/receipt @ rev 12107

brasero: fix bdeps
author Antoine Bodin <gokhlayeh@slitaz.org>
date Mon Mar 12 02:46:13 2012 +0100 (2012-03-12)
parents f039561c816d
children 64d92ecc9394
line source
1 # SliTaz package receipt.
3 PACKAGE="audacity"
4 VERSION="1.3.13"
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-beta.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 mv $PACKAGE-src-$VERSION-beta $PACKAGE-$VERSION 2>/dev/null
21 cd $src
22 ./configure \
23 --prefix=/usr \
24 --infodir=/usr/share/info \
25 --mandir=/usr/share/man \
26 --without-ffmpeg \
27 $CONFIGURE_ARGS &&
28 make && make DESTDIR=$PWD/_pkg install
29 }
31 # Rules to gen a SliTaz package suitable for Tazpkg.
32 genpkg_rules()
33 {
34 mkdir -p $fs/usr $fs/usr/share
35 cp -a $_pkg/usr/bin $fs/usr
36 cp -a $_pkg/usr/share/applications $fs/usr/share
37 }