audacity: enable jack support due to popular demand.
This commit is contained in:
parent
4605f3fc61
commit
face60da4c
1 changed files with 7 additions and 5 deletions
|
@ -1,15 +1,12 @@
|
|||
# Template file for 'audacity'
|
||||
pkgname=audacity
|
||||
version=2.1.1
|
||||
revision=1
|
||||
revision=2
|
||||
wrksrc="${pkgname}-Audacity-${version}"
|
||||
build_style=gnu-configure
|
||||
configure_args="--with-libsamplerate"
|
||||
if ! [ "$XBPS_TARGET_MACHINE" = "i686" -o "$XBPS_TARGET_MACHINE" = "x86_64" ]; then
|
||||
configure_args+=" --disable-sse"
|
||||
fi
|
||||
hostmakedepends="pkg-config cmake"
|
||||
makedepends="wxGTK-devel gtk+-devel expat-devel
|
||||
makedepends="jack-devel wxGTK-devel gtk+-devel expat-devel
|
||||
libsndfile-devel libmad-devel libsamplerate-devel soundtouch-devel
|
||||
vamp-plugin-sdk-devel lame-devel libid3tag-devel"
|
||||
depends="desktop-file-utils hicolor-icon-theme"
|
||||
|
@ -20,6 +17,11 @@ homepage="http://audacityteam.org/"
|
|||
distfiles="https://github.com/${pkgname}/${pkgname}/archive/Audacity-${version}.tar.gz"
|
||||
checksum=15c5ff7ac1c0b19b08f4bdcb0f4988743da2f9ed3fab41d6f07600e67cb9ddb6
|
||||
|
||||
case "$XBPS_TARGET_MACHINE" in
|
||||
i686*|x86_64*) ;;
|
||||
*) configure_args+=" --disable-sse" ;;
|
||||
esac
|
||||
|
||||
post_install() {
|
||||
rm ${DESTDIR}/usr/share/doc/${pkgname}/LICENSE.txt
|
||||
vlicense LICENSE.txt LICENSE
|
||||
|
|
Loading…
Reference in a new issue