summaryrefslogtreecommitdiff
path: root/manualPorts/audacity/Pkgfile
blob: 6cde32865b4fe02976a3345e48a40350b63d995f (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.3
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

}