audacity: update to 2.3.0.

This commit is contained in:
Leah Neukirchen 2018-10-01 15:04:57 +02:00 committed by Leah Neukirchen
parent 5dd47d229f
commit 3fef792cef
1 changed files with 9 additions and 3 deletions

View File

@ -1,7 +1,7 @@
# Template file for 'audacity' # Template file for 'audacity'
pkgname=audacity pkgname=audacity
version=2.2.2 version=2.3.0
revision=6 revision=1
wrksrc="${pkgname}-Audacity-${version}" wrksrc="${pkgname}-Audacity-${version}"
build_style=gnu-configure build_style=gnu-configure
configure_args="--with-ffmpeg=system --with-libsndfile=system --with-expat=system configure_args="--with-ffmpeg=system --with-libsndfile=system --with-expat=system
@ -17,12 +17,18 @@ maintainer="Leah Neukirchen <leah@vuxu.org>"
license="GPL-2.0-or-later" license="GPL-2.0-or-later"
homepage="https://www.audacityteam.org" homepage="https://www.audacityteam.org"
distfiles="https://github.com/${pkgname}/${pkgname}/archive/Audacity-${version}.tar.gz" distfiles="https://github.com/${pkgname}/${pkgname}/archive/Audacity-${version}.tar.gz"
checksum=759e8efd5e4ff6cc2fdd31b36bc631307330c1a6e2d3426e3f1d46ebcf8907a3 checksum=37127f68dceeb5da08d008ec9373a65e2d5d0a9b937c808a5d7c3b88aa9e275e
case "$XBPS_TARGET_MACHINE" in case "$XBPS_TARGET_MACHINE" in
i686*|x86_64*) ;; i686*|x86_64*) ;;
*) configure_args+=" --disable-sse" ;; *) configure_args+=" --disable-sse" ;;
esac esac
case "$XBPS_TARGET_MACHINE" in
arm*)
makedepends+=" libatomic-devel"
LDFLAGS="-latomic"
;;
esac
if [ "$CROSS_BUILD" ]; then if [ "$CROSS_BUILD" ]; then
hostmakedepends+=" python" hostmakedepends+=" python"