# Description: Library and CLI tools for Qalculate!
# URL: https://qalculate.github.io/
# Maintainer: Joacim Olsen Tangen, hi at joac dot im
# Depends on: libxml2, icu

name=libqalculate
version=3.21.0
release=1
source=(https://github.com/Qalculate/$name/releases/download/v$version/$name-$version.tar.gz)

build() {
	cd $name-$version

	./configure --prefix=/usr \
		--disable-nls
	make
	make DESTDIR=$PKG install

	rm -rf $PKG/usr/share/doc
}