wok view audacity/receipt @ rev 17474

syslinux/iso2exe: use always mkfloppy in init
author Pascal Bellard <pascal.bellard@slitaz.org>
date Sat Dec 27 18:25:05 2014 +0100 (2014-12-27)
parents 533c0cab6960
children affba9aecc73
line source
1 # SliTaz package receipt.
3 PACKAGE="audacity"
4 VERSION="2.0.6"
5 CATEGORY="multimedia"
6 SHORT_DESC="software for recording and editing sounds"
7 MAINTAINER="allan316@gmail.com"
8 LICENSE="GPL2"
9 TARBALL="$PACKAGE-minsrc-$VERSION.tar.xz"
10 WEB_SITE="http://audacity.sourceforge.net"
11 WGET_URL="$SF_MIRROR/project/$PACKAGE/$PACKAGE/$VERSION/$TARBALL"
12 TAGS="sound audio recorder editor"
14 DEPENDS="wxWidgets ffmpeg libvorbis imlib2 libid3tag libmad flac libsndfile \
15 lame alsa-lib xorg-libXxf86vm"
16 BUILD_DEPENDS="wxWidgets-dev ffmpeg-dev libvorbis-dev libmad-dev flac-dev \
17 libsndfile-dev lame-dev alsa-lib-dev portaudio-dev cmake"
19 # Rules to configure and make the package.
20 compile_rules()
21 {
22 ./configure \
23 --prefix=/usr \
24 --infodir=/usr/share/info \
25 --mandir=/usr/share/man \
26 --with-ffmpeg=local \
27 $CONFIGURE_ARGS &&
28 make && make DESTDIR=$DESTDIR 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 $install/usr/bin $fs/usr
36 cp -a $install/usr/share/icons $fs/usr/share
37 cp -a $install/usr/share/audacity $fs/usr/share
38 cp -a $install/usr/share/pixmaps $fs/usr/share
39 cp -a $install/usr/share/applications $fs/usr/share
40 }