summaryrefslogtreecommitdiff
path: root/manualPorts/audacity/Pkgfile
blob: fb5401a4e6a321daef052be0c03ffa97abeb19cf (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.4.1
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

}