summaryrefslogtreecommitdiff
path: root/repo/libixion/libixion.xibuild
blob: 1061d5b98468b0b535dba6cb2206aa3c822328a2 (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
#!/bin/sh

NAME="libixion"
DESC="A general purpose formula parser & interpreter"

MAKEDEPS=" boost mdds"

PKG_VER=0.17.0
SOURCE="https://kohei.us/files/ixion/src/libixion-$PKG_VER.tar.xz"

ADDITIONAL="
fix.patch
"

prepare() {
    apply_patches
}

build() {
	./configure \
		--prefix=/usr \
		--sysconfdir=/etc \
		--mandir=/usr/share/man \
		--localstatedir=/var \
		--disable-python
	make
}

check() {
	make check
}

package() {
	make DESTDIR="$PKG_DEST" install
}