80376a1964
A script that can copy a directory to the gh-pages branch of the repository.
24 lines
635 B
Makefile
24 lines
635 B
Makefile
# $NetBSD: Makefile,v 1.1 2022/02/05 09:39:19 adam Exp $
|
|
|
|
DISTNAME= ghp-import-2.0.2
|
|
PKGNAME= ${PYPKGPREFIX}-${DISTNAME}
|
|
CATEGORIES= misc python
|
|
MASTER_SITES= ${MASTER_SITE_PYPI:=g/ghp-import/}
|
|
|
|
MAINTAINER= pkgsrc-users@NetBSD.org
|
|
HOMEPAGE= https://github.com/c-w/ghp-import
|
|
COMMENT= Copy your docs directly to the gh-pages branch
|
|
LICENSE= apache-2.0
|
|
|
|
DEPENDS+= ${PYPKGPREFIX}-dateutil>=2.8.1:../../time/py-dateutil
|
|
|
|
USE_LANGUAGES= # none
|
|
|
|
USE_PKG_RESOURCES= yes
|
|
|
|
post-install:
|
|
cd ${DESTDIR}${PREFIX}/bin && \
|
|
${MV} ghp-import ghp-import-${PYVERSSUFFIX} || ${TRUE}
|
|
|
|
.include "../../lang/python/egg.mk"
|
|
.include "../../mk/bsd.pkg.mk"
|