mirror of
https://github.com/archlinuxarm/PKGBUILDs.git
synced 2024-11-08 22:45:43 +00:00
35 lines
867 B
Bash
35 lines
867 B
Bash
# $Id: PKGBUILD 136035 2011-08-21 23:31:51Z eric $
|
|
# Maintainer: Eric Bélanger <eric@archlinux.org>
|
|
|
|
# ALARM: Kevin Mihelich <kevin@archlinuxarm.org>
|
|
# - --with-pic for v6h/v7h
|
|
|
|
pkgname=soundtouch
|
|
pkgver=1.8.0
|
|
pkgrel=1
|
|
pkgdesc="An audio processing library"
|
|
arch=('i686' 'x86_64')
|
|
url="http://www.surina.net/soundtouch/"
|
|
license=('LGPL')
|
|
depends=('gcc-libs')
|
|
source=(http://www.surina.net/soundtouch/${pkgname}-${pkgver}.tar.gz)
|
|
sha1sums=('2cee2c63194227b4a58da01a7cd92b8632f139cd')
|
|
|
|
prepare() {
|
|
cd ${pkgname}
|
|
sed -i 's/AM_CONFIG_HEADER/AC_CONFIG_HEADER/' configure.ac
|
|
}
|
|
|
|
build() {
|
|
cd ${pkgname}
|
|
|
|
[ "${CARCH}" = "armv6h" -o "${CARCH}" = "armv7h" ] && CONFIGFLAG="--with-pic"
|
|
./bootstrap
|
|
./configure --prefix=/usr --enable-shared ${CONFIGFLAG}
|
|
make
|
|
}
|
|
|
|
package() {
|
|
cd ${pkgname}
|
|
make DESTDIR="${pkgdir}" pkgdocdir=/usr/share/doc/soundtouch install
|
|
}
|