mirror of
https://git.FreeBSD.org/ports.git
synced 2025-01-14 07:43:06 +00:00
215879b6f1
Should have been PYDISTUTILS_BUILD_TARGET but it appears to not be needed.
42 lines
1.0 KiB
Makefile
42 lines
1.0 KiB
Makefile
# $FreeBSD$
|
|
|
|
PORTNAME= cryptominisat
|
|
DISTVERSION= 5.6.8
|
|
PORTREVISION= 1
|
|
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
|
|
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>
|