672d3e6c5c
pkgsrc changes: - Take MAINTAINERship (or, in other words, make me blameworthy if the Python documentation isn't synced with the respective lang/python* packages :)) Changes: No changelog is available but it syncs py36-html-docs to current python36 version.
30 lines
633 B
Makefile
30 lines
633 B
Makefile
# $NetBSD: Makefile,v 1.4 2017/11/24 11:25:33 leot Exp $
|
|
#
|
|
|
|
VERS= 3.6.3
|
|
DISTNAME= python-${VERS}-docs-html
|
|
PKGNAME= py36-html-docs-${VERS}
|
|
CATEGORIES= lang python
|
|
MASTER_SITES= https://www.python.org/ftp/python/doc/${VERS}/
|
|
EXTRACT_SUFX= .tar.bz2
|
|
|
|
MAINTAINER= leot@NetBSD.org
|
|
HOMEPAGE= https://www.python.org/doc/
|
|
COMMENT= HTML Documentation for Python 3.6
|
|
LICENSE= python-software-foundation
|
|
|
|
DIST_SUBDIR= python
|
|
|
|
USE_TOOLS+= pax
|
|
|
|
NO_CONFIGURE= yes
|
|
NO_BUILD= yes
|
|
|
|
HTMLDIR= share/doc/python3.6
|
|
|
|
INSTALLATION_DIRS= ${HTMLDIR}
|
|
|
|
do-install:
|
|
cd ${WRKSRC} && pax -rw -pp . ${DESTDIR}${PREFIX}/${HTMLDIR}
|
|
|
|
.include "../../mk/bsd.pkg.mk"
|