a20da560a8
pkgsrc changes: - Switch MASTER_SITES to https://www.python.org/ftp/python/doc/${VERS}/ Unlike previous MASTER_SITES the documentation there is not regenerated periodically (so it will avoid possible changes in the distfiles). Changes: Unfortunately no changelog is available. However, the documentation is now synced with the lang/python34 version available in pkgsrc.
30 lines
640 B
Makefile
30 lines
640 B
Makefile
# $NetBSD: Makefile,v 1.4 2017/01/19 09:29:07 leot Exp $
|
|
#
|
|
|
|
VERS= 3.4.6
|
|
DISTNAME= python-${VERS}-docs-html
|
|
PKGNAME= py34-html-docs-${VERS}
|
|
CATEGORIES= lang python
|
|
MASTER_SITES= https://www.python.org/ftp/python/doc/${VERS}/
|
|
EXTRACT_SUFX= .tar.bz2
|
|
|
|
MAINTAINER= pkgsrc-users@NetBSD.org
|
|
HOMEPAGE= http://www.python.org/doc/
|
|
COMMENT= HTML Documentation for Python 3.4
|
|
LICENSE= python-software-foundation
|
|
|
|
DIST_SUBDIR= python
|
|
|
|
USE_TOOLS+= pax
|
|
|
|
NO_CONFIGURE= yes
|
|
NO_BUILD= yes
|
|
|
|
HTMLDIR= share/doc/python3.4
|
|
|
|
INSTALLATION_DIRS= ${HTMLDIR}
|
|
|
|
do-install:
|
|
cd ${WRKSRC} && pax -rw -pp . ${DESTDIR}${PREFIX}/${HTMLDIR}
|
|
|
|
.include "../../mk/bsd.pkg.mk"
|