mirror of
https://git.FreeBSD.org/ports.git
synced 2024-12-22 04:17:44 +00:00
cb333cf1ec
- Do not silence installation message - Update dependent ports: - Fix build with swig 4.0.1 - Update *_DEPENDS - Remove BINARY_ALIAS Changes: http://www.swig.org/news.php PR: 246613 Exp-run by: antoine
30 lines
753 B
Makefile
30 lines
753 B
Makefile
# $FreeBSD$
|
|
|
|
PORTNAME= scikit-umfpack
|
|
DISTVERSION= 0.3.2
|
|
PORTREVISION= 3
|
|
CATEGORIES= math python
|
|
MASTER_SITES= CHEESESHOP
|
|
PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX}
|
|
|
|
MAINTAINER= yuri@FreeBSD.org
|
|
COMMENT= Python interface to UMFPACK sparse direct solver
|
|
|
|
LICENSE= BSD2CLAUSE
|
|
LICENSE_FILE= ${WRKSRC}/LICENSE
|
|
|
|
BUILD_DEPENDS= ${PYNUMPY} \
|
|
${PYTHON_PKGNAMEPREFIX}scipy>0:science/py-scipy@${PY_FLAVOR} \
|
|
swig:devel/swig
|
|
LIB_DEPENDS= libumfpack.so:math/suitesparse
|
|
RUN_DEPENDS= ${PYNUMPY} \
|
|
${PYTHON_PKGNAMEPREFIX}scipy>0:science/py-scipy@${PY_FLAVOR}
|
|
|
|
USES= python
|
|
USE_PYTHON= distutils cython autoplist
|
|
|
|
post-extract: # workaround for https://github.com/scikit-umfpack/scikit-umfpack/issues/53
|
|
@truncate -s 0 ${WRKSRC}/README.rst
|
|
|
|
.include <bsd.port.mk>
|