core/soundtouch/PKGBUILD

33 lines
739 B
Bash
Raw Normal View History

# Maintainer: abveritas@chakra-project.org
2010-04-07 03:23:26 +08:00
pkgname=soundtouch
pkgver=1.7.1
pkgrel=1
2012-04-30 08:04:19 +08:00
pkgdesc="SoundTouch is an open-source audio processing library for changing the Tempo, Pitch and Playback Rates of audio streams or audio files."
arch=('x86_64')
2010-04-07 03:23:26 +08:00
url="http://www.surina.net/soundtouch/"
license=('LGPL')
depends=('gcc-libs')
options=('!libtool')
2012-04-30 08:04:19 +08:00
source=("http://www.surina.net/soundtouch/${pkgname}-${pkgver}.tar.gz")
md5sums=('957500b90593cd6c7d8adc62a64a1851')
2010-04-07 03:23:26 +08:00
build() {
cd "${srcdir}/${pkgname}"
2012-04-30 08:04:19 +08:00
if [ ! -x ./configure ]; then
./bootstrap
fi
./configure --prefix=/usr --enable-shared --with-pic
2012-04-30 08:04:19 +08:00
make
2010-04-07 03:23:26 +08:00
}
2012-04-30 08:04:19 +08:00
package() {
cd "${srcdir}/${pkgname}"
make DESTDIR="${pkgdir}" pkgdocdir=/usr/share/doc/soundtouch install
}