void-packages/srcpkgs/z3/template
2018-05-23 17:22:46 +02:00

49 lines
1.5 KiB
Bash

# Template file for 'z3'
pkgname=z3
version=4.7.1
revision=1
wrksrc="${pkgname}-${pkgname}-${version}"
build_style=gnu-configure
make_build_args="-C build all examples"
make_install_args="-C build install"
hostmakedepends="python3 $(vopt_if ocaml 'ocaml ocaml-findlib')"
makedepends="libgomp-devel gmp-devel $(vopt_if ocaml 'ocaml-num ncurses-devel')"
depends="python3 python3-setuptools"
pycompile_module="z3"
short_desc="Z3 theorem prover and SMT solver (command line + Python3 module)"
maintainer="Leah Neukirchen <leah@vuxu.org>"
license="MIT"
homepage="https://github.com/Z3Prover/z3"
distfiles="https://github.com/Z3Prover/z3/archive/${pkgname}-${version}.tar.gz"
checksum=a353e3da00cdaffd258052cc1406efc854606855222ab4bfd5679c58af5c11c7
build_options="ocaml"
desc_option_ocaml="Enable support for OCaml bindings"
build_options_default="ocaml"
shlib_provides="libz3.so"
subpackages="$(vopt_if ocaml z3-ocaml)"
if [ "$CROSS_BUILD" ]; then
build_options_default=
fi
do_configure() {
LDFLAGS="$CFLAGS $LDFLAGS" ./configure --prefix=/usr -g --python $(vopt_if ocaml --ml)
}
post_install() {
vbin build/z3_tptp
vbin build/maxsat
if [ "$build_option_ocaml" ]; then
vmkdir usr/lib/ocaml/Z3/stublibs
mv ${DESTDIR}/usr/lib/ocaml/Z3/dllz3ml.so ${DESTDIR}/usr/lib/ocaml/Z3/stublibs
fi
vlicense LICENSE.txt
}
z3-ocaml_package() {
short_desc="Z3 theorem prover and SMT solver (OCaml bindings)"
depends="z3>=${version}_${revision}"
pkg_install() {
vmove usr/lib/ocaml
}
}