# Template file for 'z3' pkgname=z3 version=4.6.0 revision=3 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 " license="MIT" homepage="https://github.com/Z3Prover/z3" distfiles="https://github.com/Z3Prover/z3/archive/${pkgname}-${version}.tar.gz" checksum=511da31d1f985cf0c79b2de05bda4e057371ba519769d1546ff71e1304fe53c9 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 } }