summarylogtreecommitdiffstats
path: root/PKGBUILD
blob: 6d0e1cf420ef67a90b885f2814a4a85c8d10d079 (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
# Maintainer: yourname <yourmail>
pkgname=aquila-git
pkgver=3.0
pkgrel=1
pkgdesc="Digital Signal Processing library"
arch=('any')
url="http://aquila-dsp.org/"
makedepends=('cmake' 'gcc')
source=("git+https://github.com/zsiciarz/aquila/")
md5sums=('SKIP')


build() { 
    mkdir -p build && pushd build
    cmake \
      -DCMAKE_BUILD_TYPE=Release \
      ../aquila
    make
    popd
}

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