summaryrefslogtreecommitdiff
path: root/manualPorts/audacity/Pkgfile
blob: b1550b50c16ec6f3c230cfa1f91223c149a13a31 (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=2.4.2
release=1
source=(https://github.com/$name/$name/archive/Audacity-$version.tar.gz)

build() {
  cd $name-Audacity-$version

  mkdir build
  cd build
  cmake ..
  make
  make DESTDIR=$PKG install
  rm -rf $PKG/usr/share/doc

}