summaryrefslogtreecommitdiff
path: root/manualPorts/audacity/Pkgfile
blob: 0c45c9cd05e2e9dadbd0642197cb93c42242904b (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

name=audacity
version=3.0.0
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"

}