mirror of
https://git.FreeBSD.org/ports.git
synced 2024-12-23 04:23:08 +00:00
1c96ea5d4a
- Allow concurrent installs (fix docdir) PR: 212213 Submitted by: xmj@FreeBSD.org Approved by: maintainer timeout (johannes@perceivon.net, 6 weeks)
32 lines
678 B
Makefile
32 lines
678 B
Makefile
# Created by: Johannes Meixner <johannes@perceivon.net>
|
|
# $FreeBSD$
|
|
|
|
PORTNAME= fastcluster
|
|
PORTVERSION= 1.1.21
|
|
CATEGORIES= math python
|
|
MASTER_SITES= CHEESESHOP
|
|
PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX}
|
|
|
|
MAINTAINER= johannes@perceivon.net
|
|
COMMENT= Python functions for hierarchical clustering
|
|
|
|
LICENSE= BSD2CLAUSE
|
|
|
|
BUILD_DEPENDS= ${PYNUMPY}
|
|
RUN_DEPENDS= ${PYNUMPY} \
|
|
${PYTHON_PKGNAMEPREFIX}scipy>0:science/py-scipy
|
|
|
|
PORTDOCS= CITATION.txt \
|
|
INSTALL.txt \
|
|
NEWS.txt \
|
|
README.txt
|
|
|
|
USES= python
|
|
USE_PYTHON= distutils autoplist concurrent
|
|
|
|
post-install:
|
|
@${MKDIR} ${STAGEDIR}${DOCSDIR}
|
|
${INSTALL_DATA} ${PORTDOCS:S|^|${WRKSRC}/|} ${STAGEDIR}${DOCSDIR}
|
|
|
|
.include <bsd.port.mk>
|