summarylogtreecommitdiffstats
path: root/PKGBUILD
blob: 3e36941f4356fbaa836e7bc3d399ac828e947ca0 (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
# Maintainer: Josh Wright <wright.jjw@gmail.com>
pkgname=tsal-git
pkgver=r166.93dccae
pkgrel=1
pkgdesc="Thread Safe Audio Library"
arch=(x86_64)
url="https://github.com/Calvin-CS/TSAL"
license=('GPL')
depends=(portaudio)
makedepends=(git)       # packages in base-devel (make and gcc) are assumed to be installed
                        # (https://wiki.archlinux.org/index.php/PKGBUILD#makedepends)
optdepends=()
provides=(tsal)
conflicts=(tsal)
source=("git+$url")
md5sums=("SKIP")

pkgver() {
    cd "TSAL"
    printf "r%s.%s" "$(git rev-list --count HEAD)" "$(git rev-parse --short HEAD)"
}

build() {
    cd "TSAL"
    autoreconf -vi
    ./configure --prefix=/usr
    make
}

package() {
	cd "TSAL"
	make DESTDIR="$pkgdir/" install
}