pkglint -r --network --only "migrate" As a side-effect of migrating the homepages, pkglint also fixed a few indentations in unrelated lines. These and the new homepages have been checked manually.
24 lines
794 B
Makefile
24 lines
794 B
Makefile
# $NetBSD: Makefile,v 1.3 2020/01/26 17:30:46 rillig Exp $
|
|
|
|
DISTNAME= biopython-1.74
|
|
PKGNAME= ${PYPKGPREFIX}-${DISTNAME}
|
|
CATEGORIES= biology
|
|
MASTER_SITES= http://biopython.org/DIST/
|
|
|
|
MAINTAINER= pkgsrc-users@NetBSD.org
|
|
HOMEPAGE= https://biopython.org/
|
|
COMMENT= Python libraries for computational molecular biology
|
|
LICENSE= biopython
|
|
|
|
USE_TOOLS+= pax
|
|
|
|
INSTALLATION_DIRS+= share/doc/biopython share/examples/biopython
|
|
|
|
post-install:
|
|
${INSTALL_DATA} ${WRKSRC}/README.rst ${DESTDIR}${PREFIX}/share/doc/biopython
|
|
${INSTALL_DATA} ${WRKSRC}/Doc/Tutorial.pdf ${DESTDIR}${PREFIX}/share/doc/biopython
|
|
cd ${WRKSRC}/Doc/examples && ${PAX} -rw . ${DESTDIR}${PREFIX}/share/examples/biopython
|
|
|
|
.include "../../lang/python/egg.mk"
|
|
.include "../../math/py-numpy/buildlink3.mk"
|
|
.include "../../mk/bsd.pkg.mk"
|