wok rev 21593
updated audacity (2.0.6 -> 2.3.2)
author | Hans-G?nter Theisgen |
---|---|
date | Tue May 21 13:55:18 2019 +0100 (2019-05-21) |
parents | 019e49ad6c06 |
children | 40ecb130a88e |
files | audacity/receipt |
line diff
1.1 --- a/audacity/receipt Tue May 21 11:08:14 2019 +0100 1.2 +++ b/audacity/receipt Tue May 21 13:55:18 2019 +0100 1.3 @@ -1,40 +1,50 @@ 1.4 # SliTaz package receipt. 1.5 1.6 PACKAGE="audacity" 1.7 -VERSION="2.0.6" 1.8 +VERSION="2.3.2" 1.9 CATEGORY="multimedia" 1.10 -SHORT_DESC="A free multi-track audio editor and recorder" 1.11 +TAGS="sound audio recorder editor" 1.12 +SHORT_DESC="A free multi-track audio editor and recorder." 1.13 MAINTAINER="allan316@gmail.com" 1.14 LICENSE="GPL2" 1.15 WEB_SITE="https://www.audacityteam.org/" 1.16 -TARBALL="$PACKAGE-minsrc-$VERSION.tar.xz" 1.17 -WGET_URL="$SF_MIRROR/project/$PACKAGE/$PACKAGE/$VERSION/$TARBALL" 1.18 -TAGS="sound audio recorder editor" 1.19 1.20 -DEPENDS="wxWidgets28 ffmpeg libvorbis imlib2 libid3tag libmad flac libsndfile \ 1.21 -lame alsa-lib xorg-libXxf86vm" 1.22 -BUILD_DEPENDS="wxWidgets28-dev ffmpeg-dev libvorbis-dev libmad-dev flac-dev \ 1.23 -libsndfile-dev lame-dev alsa-lib-dev portaudio-dev cmake expat-dev" 1.24 +SOURCE="Audacity" 1.25 +TARBALL="$SOURCE-$VERSION.tar.gz" 1.26 +WGET_URL="https://github.com/$PACKAGE/$PACKAGE/archive/$TARBALL" 1.27 + 1.28 +DEPENDS="alsa-lib ffmpeg flac imlib2 lame libid3tag libmad libsndfile \ 1.29 + libvorbis wxWidgets xorg-libXxf86vm" 1.30 +BUILD_DEPENDS="alsa-lib-dev bash cmake expat-dev ffmpeg-dev flac-dev \ 1.31 + gcc83 lame-dev libmad-dev libsndfile-dev libtool libvorbis-dev \ 1.32 + portaudio-dev wxWidgets-dev" 1.33 1.34 # Rules to configure and make the package. 1.35 compile_rules() 1.36 { 1.37 - ./configure \ 1.38 - --prefix=/usr \ 1.39 - --infodir=/usr/share/info \ 1.40 - --mandir=/usr/share/man \ 1.41 - --with-ffmpeg=local \ 1.42 + export CC=gcc-83 1.43 + export CXX=g++-83 1.44 + export SHELL=/bin/bash 1.45 + export CONFIG_SHELL=/bin/bash 1.46 + 1.47 + ./configure \ 1.48 + --prefix=/usr \ 1.49 + --infodir=/usr/share/info \ 1.50 + --mandir=/usr/share/man \ 1.51 + --with-ffmpeg=local \ 1.52 $CONFIGURE_ARGS && 1.53 - make && make DESTDIR=$DESTDIR install 1.54 + make && 1.55 + make DESTDIR=$DESTDIR install 1.56 } 1.57 1.58 # Rules to gen a SliTaz package suitable for Tazpkg. 1.59 genpkg_rules() 1.60 { 1.61 - mkdir -p $fs/usr $fs/usr/share 1.62 - cp -a $install/usr/bin $fs/usr 1.63 - cp -a $install/usr/share/icons $fs/usr/share 1.64 - cp -a $install/usr/share/audacity $fs/usr/share 1.65 - cp -a $install/usr/share/pixmaps $fs/usr/share 1.66 - cp -a $install/usr/share/applications $fs/usr/share 1.67 + mkdir -p $fs/usr/share 1.68 + 1.69 + cp -a $install/usr/bin $fs/usr 1.70 + cp -a $install/usr/share/icons $fs/usr/share 1.71 + cp -a $install/usr/share/audacity $fs/usr/share 1.72 + cp -a $install/usr/share/pixmaps $fs/usr/share 1.73 + cp -a $install/usr/share/applications $fs/usr/share 1.74 }