blob: 9a40acefde56116507e1b2a51da890187472c188 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
|
# Description: Audio recording and editing program
# URL: http://audacityteam.org/
# Maintainer: Erich Eckner, crux at eckner dot net
# Depends on: wxgtk expat libsndfile
name=audacity
version=2.3.0
release=1
source=(https://github.com/$name/$name/archive/Audacity-$version.tar.gz)
build() {
cd $name-Audacity-$version
export CONFIG_SHELL=/bin/bash
/bin/bash ./configure \
--prefix=/usr \
--mandir=/usr/share/man \
--with-ffmpeg=local \
--with-libflac=local \
--disable-nls
make
make DESTDIR=$PKG install
rm -rf $PKG/usr/share/doc
}
|