blob: 2a8dad29895b8c264f787e6ae9338e1d375fa983 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
|
# Description: Audio recording and editing program
# URL: http://audacityteam.org/
# Maintainer: Erich Eckner, crux at eckner dot net
# Depends on: wxgtk expat libsndfile python3-conan
name=audacity
version=3.0.5
release=1
source=(https://github.com/$name/$name/archive/Audacity-$version.tar.gz)
build() {
cd $name-Audacity-$version
mkdir build
cd build
cmake -DCMAKE_INSTALL_PREFIX=/usr -Daudacity_use_wxwidgets=local ..
make
make DESTDIR=$PKG install
mv "$PKG/usr/lib64" "$PKG/usr/lib"
}
|