blob: 686ad6b8b9fad78543179f6a021fb140c3e37f5a (
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
|
# Maintainer: Antonio Cardace <anto.cardace@gmail.com>
pkgname=wavetrack-git
pkgver=0.1
pkgrel=1
pkgdesc="A real-time pitch-tracking library based on wavelets."
arch=('any')
url="https://github.com/ichigo663/WaveTrack"
license=('GPL3')
depends=('glibc>=2.3')
makedepends=('git' 'make')
provides=("$pkgname=$pkgver")
conflicts=("$pkgname")
replaces=("$pkgname")
install="${pkgname}.install"
source=("$pkgname::git+https://github.com/ichigo663/WaveTrack.git")
md5sums=("SKIP")
build() {
cd "$srcdir/$pkgname"
autoreconf -i
if [ "$CARCH" == "x86_64" ]; then
./configure --prefix=/usr
else
./configure --prefix=/usr --libdir=/usr/lib32
fi
make
}
package() {
cd "$srcdir/$pkgname"
make DESTDIR="$pkgdir" install
}
|