wok-next view audacity/receipt @ rev 21721

created recipes for efivar and efibootmgr
author Hans-G?nter Theisgen
date Tue Sep 01 10:09:15 2020 +0100 (2020-09-01)
parents f48456621a9d
children
line source
1 # SliTaz package receipt v2.
3 PACKAGE="audacity"
4 VERSION="2.1.3"
5 CATEGORY="multimedia"
6 SHORT_DESC="A free multi-track audio editor and recorder"
7 MAINTAINER="allan316@gmail.com"
8 LICENSE="GPL2"
9 WEB_SITE="https://www.audacityteam.org/"
11 TARBALL="Audacity-$VERSION.tar.gz"
12 WGET_URL="https://github.com/audacity/audacity/archive/$TARBALL"
14 BUILD_DEPENDS="wxWidgets-dev ffmpeg-dev libvorbis-dev libmad-dev flac-dev \
15 libsndfile-dev lame-dev alsa-lib-dev portaudio-dev cmake expat-dev \
16 gettext"
18 compile_rules() {
19 ./configure \
20 --with-ffmpeg=local \
21 $CONFIGURE_ARGS &&
22 fix libtool &&
23 make &&
24 make DESTDIR=$install install
25 }
27 genpkg_rules() {
28 copy @std
29 DEPENDS="alsa-lib expat gdk-pixbuf glib gtk2 libmad libogg libsndfile \
30 libvorbis wxWidgets zlib"
31 TAGS="sound audio recorder editor"
32 }