2020-04-22 22:53:34 +10:00
|
|
|
# Description: Audio processing library for changing tempo, pitch and playback rates.
|
|
|
|
# URL: https://www.surina.net/soundtouch/
|
|
|
|
# Maintainer: Danny Rawlins, crux at romster dot me
|
|
|
|
|
|
|
|
name=soundtouch
|
2021-09-09 12:51:30 +02:00
|
|
|
version=2.3.1
|
2020-04-22 22:53:34 +10:00
|
|
|
release=1
|
|
|
|
source=(https://gitlab.com/$name/$name/-/archive/$version/$name-$version.tar.bz2)
|
|
|
|
|
|
|
|
build() {
|
|
|
|
cd $name-$version
|
|
|
|
|
|
|
|
./bootstrap
|
|
|
|
|
|
|
|
./configure \
|
|
|
|
--prefix=/usr \
|
|
|
|
--enable-shared=yes
|
|
|
|
|
|
|
|
make
|
|
|
|
make DESTDIR=$PKG install
|
|
|
|
|
|
|
|
rm -r $PKG/usr/share/doc
|
|
|
|
}
|