#!/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
}