blob: ac6781a20ab7eb2ee1633180fa6715defc7a754a (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
|
# Created by: Li-Wen Hsu <lwhsu@FreeBSD.org>
# $FreeBSD$
PORTNAME= stp
DISTVERSION= 2.3.2
PORTREVISION= 1
PORTEPOCH= 1
CATEGORIES= math
MAINTAINER= arrowd@FreeBSD.org
COMMENT= Decision Procedure for Bitvectors and Arrays
LICENSE= MIT
LICENSE_FILE= ${WRKSRC}/LICENSE
BROKEN_aarch64= fails to compile: undefined reference to sbrk
LIB_DEPENDS= libboost_program_options.so:devel/boost-libs \
libminisat.so:math/minisat \
libcryptominisat5.so:math/cryptominisat
USES= bison:build compiler:c++11-lang cmake perl5 python
USE_GITHUB= yes
USE_PERL5= build
USE_LDCONFIG= yes
post-install:
@${MV} ${STAGEDIR}${PREFIX}/bin/stp-${PORTVERSION} ${STAGEDIR}${PREFIX}/bin/stp
.include <bsd.port.mk>
|