contrib/audacity/Pkgfile

34 lines
817 B
Plaintext

# Description: Audio recording and editing program
# URL: https://www.audacityteam.org/
# Maintainer: Danny Rawlins, crux at romster dot me
# Depends on: jack-audio-connection-kit lame libid3tag libmad libsoxr lilv soundtouch suil twolame vamp-plugin-sdk wxgtk3
# Optional: portsmf
name=audacity
version=2.3.3
release=2
source=(https://github.com/$name/$name/archive/Audacity-$version.tar.gz)
build() {
cd $name-Audacity-$version
CONFIG_SHELL=/bin/bash \
WX_CONFIG=wx-config-gtk3 \
./configure \
--prefix=/usr \
--with-libsndfile="system" \
--with-ffmpeg="system" \
--with-expat="system" \
--with-lame="system" \
--with-libsoxr="system" \
--with-libflac \
--with-libsamplerate \
--with-lv2 \
--disable-dynamic-loading
make
make DESTDIR=$PKG install
rm -r $PKG/usr/share/{doc,locale}
}