47 lines
1.3 KiB
Bash
47 lines
1.3 KiB
Bash
# Template file for 'z3'
|
|
pkgname=z3
|
|
version=4.4.1
|
|
revision=1
|
|
wrksrc="${pkgname}-${pkgname}-${version}"
|
|
hostmakedepends="python"
|
|
makedepends="libgomp-devel gmp-devel"
|
|
depends="python"
|
|
pycompile_module="z3.py z3consts.py z3core.py z3num.py z3poly.py z3printer.py
|
|
z3rcf.py z3test.py z3types.py z3util.py"
|
|
short_desc="Z3 theorem prover and SMT solver (command line + Python module)"
|
|
maintainer="Christian Neukirchen <chneukirchen@gmail.com>"
|
|
license="MIT"
|
|
homepage="https://github.com/Z3Prover/z3"
|
|
distfiles="https://github.com/Z3Prover/z3/archive/${pkgname}-${version}.tar.gz"
|
|
checksum=50967cca12c5c6e1612d0ccf8b6ebf5f99840a783d6cf5216336a2b59c37c0ce
|
|
|
|
do_configure() {
|
|
case "$XBPS_TARGET_MACHINE" in
|
|
i686*|x86_64*) : good ;;
|
|
*)
|
|
sed -i 's/-msse\|-msse2\|-mfpmath=sse//g' scripts/mk_util.py
|
|
sed -i '/define USE_INTRINSICS\|emmintrin.h/d' src/util/hwf.cpp
|
|
esac
|
|
|
|
./configure --prefix=/usr -g
|
|
}
|
|
|
|
do_build() {
|
|
make ${makejobs} -C build all examples
|
|
}
|
|
|
|
do_install() {
|
|
vbin build/z3
|
|
vbin build/z3_tptp
|
|
vbin build/iz3
|
|
vbin build/maxsat
|
|
vinstall build/libz3.so 0755 usr/lib
|
|
for f in src/api/z3*.h; do
|
|
vinstall $f 0644 usr/include
|
|
done
|
|
vinstall src/api/c++/z3++.h 0644 usr/include
|
|
for f in ${pycompile_module}; do
|
|
vinstall build/$f 0644 usr/lib/python2.7/site-packages
|
|
done
|
|
vlicense LICENSE.txt
|
|
}
|