summarylogtreecommitdiffstats
path: root/PKGBUILD
blob: 6c07fa348c20cb19a3567397427f0f41eaa14773 (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
# Maintainer: Johannes "hpfmn" Wegener <mail@johanneswegener.de>
pkgname=dspatch
pkgver=3.00
pkgrel=1
epoch=
pkgdesc="A powerful C++ flow-based programming library that allows you to create and route (or \"patch\") high performance data processing circuits."
arch=("x86_64")
url="http://flowbasedprogramming.com/DSPatch/index.html"
license=('LGPL')
groups=()
depends=('glibc')
makedepends=('cmake', 'gcc')
checkdepends=()
optdepends=()
provides=()
conflicts=()
replaces=()
backup=()
options=()
install=
changelog=
source=("http://netix.dl.sourceforge.net/project/dspatch/DSPatch-$pkgver.zip")
noextract=()
md5sums=('eea62d626b1736fc983e33f717c12475')
validpgpkeys=()

prepare() {
	cd "$pkgname"
    mkdir -p build
}

build() {
	cd "$pkgname"
    cd build
    cmake ../ -DCMAKE_INSTALL_PREFIX=/usr -G "Unix Makefiles"
	make
}

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