blob: 7f38a072b315e19ed4dc4540d70ea48e09420b2f (
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.16.1
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
}
|