wok view audacity/receipt @ rev 21594

audacity: added libatomic
author Hans-G?nter Theisgen
date Tue May 21 14:18:25 2019 +0100 (2019-05-21)
parents 90ce23a934ab
children 2ac5afd39c2c
line source
1 # SliTaz package receipt.
3 PACKAGE="audacity"
4 VERSION="2.3.2"
5 CATEGORY="multimedia"
6 TAGS="sound audio recorder editor"
7 SHORT_DESC="A free multi-track audio editor and recorder."
8 MAINTAINER="allan316@gmail.com"
9 LICENSE="GPL2"
10 WEB_SITE="https://www.audacityteam.org/"
12 SOURCE="Audacity"
13 TARBALL="$SOURCE-$VERSION.tar.gz"
14 WGET_URL="https://github.com/$PACKAGE/$PACKAGE/archive/$TARBALL"
16 DEPENDS="alsa-lib ffmpeg flac imlib2 lame libatomic libid3tag libmad \
17 libsndfile libvorbis wxWidgets xorg-libXxf86vm"
18 BUILD_DEPENDS="alsa-lib-dev bash cmake expat-dev ffmpeg-dev flac-dev \
19 gcc83 lame-dev libatomic libmad-dev libsndfile-dev libtool \
20 libvorbis-dev portaudio-dev wxWidgets-dev"
22 # Rules to configure and make the package.
23 compile_rules()
24 {
25 export CC=gcc-83
26 export CXX=g++-83
27 export SHELL=/bin/bash
28 export CONFIG_SHELL=/bin/bash
30 ./configure \
31 --prefix=/usr \
32 --infodir=/usr/share/info \
33 --mandir=/usr/share/man \
34 --with-ffmpeg=local \
35 $CONFIGURE_ARGS &&
36 make &&
37 make DESTDIR=$DESTDIR install
38 }
40 # Rules to gen a SliTaz package suitable for Tazpkg.
41 genpkg_rules()
42 {
43 mkdir -p $fs/usr/share
45 cp -a $install/usr/bin $fs/usr
46 cp -a $install/usr/share/icons $fs/usr/share
47 cp -a $install/usr/share/audacity $fs/usr/share
48 cp -a $install/usr/share/pixmaps $fs/usr/share
49 cp -a $install/usr/share/applications $fs/usr/share
50 }