# Description: Audio processing library for changing tempo pitch and playback rates.
# URL:         http://www.surina.net/soundtouch/
# Maintainer:  Vincenzo Colosimo, vico at bicisport dot de

name=soundtouch
version=1.3.1
release=2
source=(http://www.surina.net/${name}/${name}-${version}.tar.gz)

build() {
    cd $name-$version
    unset CFLAGS
    touch INSTALL NEWS README AUTHORS ChangeLog COPYING
    autoreconf -i -f
    ./configure --prefix=/usr \
                --enable-shared=yes \
                --disable-integer-samples
    make
    make DESTDIR=$PKG install
    rm -r $PKG/usr/doc
}
