blob: a76cccf918720e44ba4de90aa9cc9d2cc930f004 (
plain)
1 # Description: Audio recording and editing program
2 # URL: http://audacity.sourceforge.net/
3 # Packager: Aaron Ball, nullspoon at oper dot io
4 # Depends on: wxgtk expat ffmpeg-compat
5
6 name=audacity
7 version=2.1.2
8 release=1
9 source=(https://github.com/${name}/${name}/archive/Audacity-${version}.tar.gz)
10
11 build() {
12 cd $name-src-$version
13 PKG_CONFIG_PATH+="/usr/lib/ffmpeg-compat/pkgconfig" \
14 ./configure \
15 --prefix=/usr \
16 --disable-nls
17
18 make
19 make DESTDIR=$PKG PREFIX=$PKG/usr install
20 }
|