32 lines
955 B
Bash
32 lines
955 B
Bash
# Template file for 'audacity'
|
|
pkgname=audacity
|
|
version=2.2.2
|
|
revision=1
|
|
wrksrc="${pkgname}-Audacity-${version}"
|
|
build_style=gnu-configure
|
|
hostmakedepends="pkg-config cmake libtool m4"
|
|
makedepends="jack-devel wxWidgets-devel gtk+-devel
|
|
libmad-devel soundtouch-devel libsoxr-devel
|
|
vamp-plugin-sdk-devel lame-devel libid3tag-devel"
|
|
depends="desktop-file-utils hicolor-icon-theme"
|
|
short_desc="Graphical cross-platform audio editor"
|
|
maintainer="Leah Neukirchen <leah@vuxu.org>"
|
|
license="GPL-2"
|
|
homepage="https://www.audacityteam.org"
|
|
distfiles="https://github.com/${pkgname}/${pkgname}/archive/Audacity-${version}.tar.gz"
|
|
checksum=759e8efd5e4ff6cc2fdd31b36bc631307330c1a6e2d3426e3f1d46ebcf8907a3
|
|
|
|
case "$XBPS_TARGET_MACHINE" in
|
|
i686*|x86_64*) ;;
|
|
*) configure_args+=" --disable-sse" ;;
|
|
esac
|
|
|
|
if [ -n "$CROSS_BUILD" ]; then
|
|
hostmakedepends+=" python"
|
|
fi
|
|
|
|
post_install() {
|
|
rm ${DESTDIR}/usr/share/doc/${pkgname}/LICENSE.txt
|
|
vlicense LICENSE.txt LICENSE
|
|
}
|