27 lines
723 B
Bash
27 lines
723 B
Bash
# Template file for 'muparser'
|
|
pkgname=muparser
|
|
version=2.2.6.1
|
|
revision=1
|
|
build_style=gnu-configure
|
|
short_desc="A fast mathematical expression parser library"
|
|
maintainer="Steve Prybylski <sa.prybylx@gmail.com>"
|
|
license="MIT"
|
|
homepage="http://muparser.beltoforion.de/"
|
|
distfiles="https://github.com/beltoforion/${pkgname}/archive/v${version}.tar.gz>${pkgname}-${version}.tar.gz"
|
|
checksum=d2562853d972b6ddb07af47ce8a1cdeeb8bb3fa9e8da308746de391db67897b3
|
|
disable_parallel_build=yes
|
|
|
|
post_install() {
|
|
vlicense License.txt
|
|
}
|
|
|
|
muparser-devel_package() {
|
|
short_desc+="- development files"
|
|
depends="${sourcepkg}>=${version}_${revision}"
|
|
pkg_install() {
|
|
vmove usr/include
|
|
vmove usr/lib/pkgconfig
|
|
vmove usr/lib/*.so
|
|
}
|
|
}
|
|
|