mirror of
https://gitdl.cn/https://github.com/chakralinux/core.git
synced 2025-02-05 00:38:27 +08:00
36 lines
801 B
Bash
36 lines
801 B
Bash
#
|
|
# Platform Packages for Chakra, part of chakra-project.org
|
|
#
|
|
# maintainer abveritas@chakra-project.org
|
|
|
|
pkgname=soundtouch
|
|
pkgver=1.7.0
|
|
pkgrel=1
|
|
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')
|
|
url="http://www.surina.net/soundtouch/"
|
|
license=('LGPL')
|
|
depends=('gcc-libs')
|
|
options=('!libtool')
|
|
source=("http://www.surina.net/soundtouch/${pkgname}-${pkgver}.tar.gz")
|
|
md5sums=('0f8df5178b30926cd2db654b9de505e3')
|
|
|
|
build() {
|
|
cd "${srcdir}/${pkgname}"
|
|
|
|
if [ ! -x ./configure ]; then
|
|
./bootstrap
|
|
fi
|
|
|
|
./configure --prefix=/usr --enable-shared --with-pic
|
|
|
|
make
|
|
}
|
|
|
|
package() {
|
|
cd "${srcdir}/${pkgname}"
|
|
|
|
make DESTDIR="${pkgdir}" pkgdocdir=/usr/share/doc/soundtouch install
|
|
}
|
|
|