summaryrefslogtreecommitdiff
path: root/audacity/Pkgfile
blob: 6514bee82ea370372d34af5298815cd638f9db74 (plain)
    1 # Description: Audio recording and editing program
    2 # URL: https://www.audacityteam.org/
    3 # Maintainer: Danny Rawlins, crux at romster dot me
    4 # Depends on: jack-audio-connection-kit lame libid3tag libmad libsoxr lilv soundtouch suil twolame vamp-plugin-sdk wxgtk3
    5 # Optional: portsmf
    6 
    7 name=audacity
    8 version=2.3.3
    9 release=2
   10 source=(https://github.com/$name/$name/archive/Audacity-$version.tar.gz)
   11 
   12 build() {
   13 	cd $name-Audacity-$version
   14 
   15 	CONFIG_SHELL=/bin/bash \
   16 	WX_CONFIG=wx-config-gtk3 \
   17 	./configure \
   18 		--prefix=/usr \
   19 		--with-libsndfile="system" \
   20 		--with-ffmpeg="system" \
   21 		--with-expat="system" \
   22 		--with-lame="system" \
   23 		--with-libsoxr="system" \
   24 		--with-libflac \
   25 		--with-libsamplerate \
   26 		--with-lv2 \
   27 		--disable-dynamic-loading
   28 
   29 	make
   30 	make DESTDIR=$PKG install
   31 
   32 	rm -r $PKG/usr/share/{doc,locale}
   33 }

Generated by cgit