blob: 8ba79e532e9099802433465d2388ce4d0019e4cf (
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
25
26
27
28
|
# $NetBSD: Makefile,v 1.2 2003/06/02 01:18:25 jschauma Exp $
DISTNAME= ScientificPython-2.2
PKGNAME= py-Scientific-doc-2.2
CATEGORIES= math
MASTER_SITES= http://starship.python.net/crew/hinsen/ \
http://dirac.cnrs-orleans.fr/programs/
MAINTAINER= tech-pkg@netbsd.org
HOMEPAGE= http://starship.python.net/crew/hinsen/scientific.html
COMMENT= Python modules for scientific computing
CONFLICTS+= py-Scientific-*
NO_BUILD= yes
do-install:
${INSTALL_DATA_DIR} ${PREFIX}/share/doc/py-Scientific
cd ${WRKSRC} && ${INSTALL_DATA} README COPYRIGHT \
Doc/PDF/manual.pdf ${PREFIX}/share/doc/py-Scientific/
${INSTALL_DATA_DIR} ${PREFIX}/share/doc/html/py-Scientific
${INSTALL_DATA} ${WRKSRC}/Doc/HTML/* \
${PREFIX}/share/doc/html/py-Scientific/
${INSTALL_DATA_DIR} ${PREFIX}/share/examples/py-Scientific
${INSTALL_DATA} ${WRKSRC}/Examples/* \
${PREFIX}/share/examples/py-Scientific/
.include "../../mk/bsd.pkg.mk"
|