removed extra/soundtouch

This commit is contained in:
Kevin Mihelich 2018-09-28 12:27:40 +00:00
parent 74537e4015
commit 6ea894e01c

View file

@ -1,35 +0,0 @@
# $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=2.0.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=('a6829c6b00b8ea684a4998929b1ad05adac449f7')
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
}