wok view audacity/receipt @ rev 5053

fix typos: libgphoto2
author Rohit Joshi <jozee@slitaz.org>
date Sat Mar 06 18:51:17 2010 +0000 (2010-03-06)
parents c616ce6b7873
children 23f97d865a9d
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 xorg-libXxf86vm"
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"
15 TAGS="sound audio recorder editor"
17 # Rules to configure and make the package.
18 compile_rules()
19 {
20 mv $PACKAGE-src-$VERSION $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 }