blob: afc37c35870cd4d56a3ad051ad61caaee86a1e51 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
|
# $Id: PKGBUILD 136036 2011-08-21 23:32:17Z eric $
# Maintainer: Eric Bélanger <eric@archlinux.org>
pkgname=soundtouch
pkgver=1.6.0
pkgrel=1
pkgdesc="An audio processing library"
arch=('i686' 'x86_64' 'mips64el')
url="http://www.surina.net/soundtouch/"
license=('LGPL')
depends=('gcc-libs')
options=('!libtool')
source=(http://www.surina.net/soundtouch/${pkgname}-${pkgver}.tar.gz
soundtouch-1.4.0-mmx-sse-compile-fix.patch
soundtouch-1.4.0-x86_64-asm-broken.patch
disable-mmx.patch
soundtouch-1.4.0-x86_64-asm-broken.patch)
build() {
cd "${srcdir}/${pkgname}"
patch -p1 -i "${srcdir}/soundtouch-1.4.0-mmx-sse-compile-fix.patch"
patch -p1 -i "${srcdir}/soundtouch-1.4.0-x86_64-asm-broken.patch"
if [ "${CARCH}" = "mips64el" ]; then
patch -Np1 -i "${srcdir}/disable-mmx.patch"
fi
./bootstrap
case $CARCH in
i686)
./configure --prefix=/usr --enable-shared
;;
x86_64)
./configure --prefix=/usr --enable-shared --with-pic
;;
mips64el)
./configure --prefix=/usr --enable-shared --with-pic
;;
esac
make
}
package() {
cd "${srcdir}/${pkgname}"
make DESTDIR="${pkgdir}" pkgdocdir=/usr/share/doc/soundtouch install
}
|