mirror of
https://git.FreeBSD.org/ports.git
synced 2025-01-13 07:34:50 +00:00
cf118ccf87
Reported by: lwhsu
39 lines
1.0 KiB
Makefile
39 lines
1.0 KiB
Makefile
PORTNAME= cryptominisat
|
|
DISTVERSION= 5.8.0
|
|
CATEGORIES= math python
|
|
PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX}
|
|
|
|
MAINTAINER= arrowd@FreeBSD.org
|
|
COMMENT= Bindings to CryptoMiniSat (a SAT solver)
|
|
|
|
LICENSE= MIT LGPL21
|
|
LICENSE_COMB= multi
|
|
LICENSE_FILE_LGPL21= ${WRKSRC}/../LICENSE.txt
|
|
LICENSE_FILE_MIT= ${WRKSRC}/../LICENSE.txt
|
|
|
|
LIB_DEPENDS= libcryptominisat5.so:math/cryptominisat
|
|
|
|
USES= compiler:c++11-lib python:3.6+
|
|
USE_PYTHON= autoplist distutils
|
|
USE_GITHUB= yes
|
|
|
|
GH_ACCOUNT= msoos
|
|
|
|
WRKSRC_SUBDIR= python
|
|
|
|
post-patch:
|
|
${REINPLACE_CMD} -e 's|@PROJECT_VERSION@|${PORTVERSION}|' \
|
|
-e 's|$${CMAKE_C_COMPILER}|${CC}|' \
|
|
-e 's|$${CMAKE_CXX_COMPILER}|${CXX}|' \
|
|
-e 's|$${PY_C_CONFIG}||' \
|
|
-e 's|$${PY_LD_CONFIG}||' \
|
|
-e 's|$${CMS_FULL_VERSION}|${PORTVERSION}|' \
|
|
-e 's|$${APPLE}||' ${WRKSRC}/setup.py.in
|
|
${CP} ${WRKSRC}/setup.py.in ${WRKSRC}/setup.py
|
|
${CP} ${WRKSRC}/src/pycryptosat.cpp.in ${WRKSRC}/src/pycryptosat.cpp
|
|
|
|
post-install:
|
|
${STRIP_CMD} ${STAGEDIR}${PYTHONPREFIX_SITELIBDIR}/pycryptosat*.so
|
|
|
|
.include <bsd.port.mk>
|