blob: 2af047d30404b37b1cbf9790edc357998527e3da (
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
|
# $NetBSD: Makefile,v 1.17 2012/09/11 23:04:31 asau Exp $
#
DISTNAME= numarray-1.5.2
PKGNAME= ${PYPKGPREFIX}-numarray-1.5.2
PKGREVISION= 1
CATEGORIES= math python
MASTER_SITES= ${MASTER_SITE_SOURCEFORGE:=numpy/}
MAINTAINER= pkgsrc-users@NetBSD.org
HOMEPAGE= http://www.stsci.edu/resources/software_hardware/numarray
COMMENT= Array manipulation
PLIST_VARS+= blas
.if exists(/System/Library/Frameworks/vecLib.framework/Headers)
BUILDLINK_PASSTHRU_DIRS+= /System/Library/Frameworks/vecLib.framework/Headers
PLIST.blas= yes
.endif
do-test:
(cd ${WRKSRC}/Lib && ${PYTHONBIN} testall.py)
.include "../../lang/python/distutils.mk"
.include "../../mk/bsd.pkg.mk"
|