blob: 7f004a42eb2fd345f91fba26647052f66ebceb67 (
plain)
1 # Description: Audio processing library for changing tempo, pitch and playback rates.
2 # URL: https://www.surina.net/soundtouch/
3 # Maintainer: Danny Rawlins, crux at romster dot me
4
5 name=soundtouch
6 version=2.2
7 release=1
8 source=(https://gitlab.com/$name/$name/-/archive/$version/$name-$version.tar.bz2)
9
10 build() {
11 cd $name-$version
12
13 ./bootstrap
14
15 ./configure \
16 --prefix=/usr \
17 --enable-shared=yes
18
19 make
20 make DESTDIR=$PKG install
21
22 rm -r $PKG/usr/share/doc
23 }
|