summarylogtreecommitdiffstats
path: root/PKGBUILD
blob: f6b037e4a95483ef8f4d953b298a7b8a59475573 (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
# Maintainer: Alexander F Rødseth <xyproto@archlinux.org>
# Contributor: Teteros <teteros@openmailbox.org>

pkgname=soundpipe-dev
pkgver=1.5.0
pkgrel=1
pkgdesc='Lightweight music DSP library'
arch=('x86_64' 'i686')
url='http://paulbatchelor.github.io/proj/soundpipe.html'
license=('MIT')
makedepends=('libsndfile' 'git')
source=("git+https://github.com/PaulBatchelor/Soundpipe#commit=3946d5b77f8e2e812b919d547518b896b1439554")
md5sums=('SKIP')

build() {
  make -C Soundpipe
}

package() {
  PREFIX="$pkgdir/usr" make -C Soundpipe install -e
  install -Dm644 Soundpipe/LICENSE "$pkgdir/usr/share/licenses/$pkgname/LICENSE"
}

# vim:ts=2 sw=2 et: