5d4d47e4bf
version 1.4.4 * fix bugs * Don't write the file unless there are changes * update configuration documentation
22 lines
604 B
Makefile
22 lines
604 B
Makefile
# $NetBSD: Makefile,v 1.10 2019/04/15 08:27:42 adam Exp $
|
|
|
|
DISTNAME= autopep8-1.4.4
|
|
PKGNAME= ${PYPKGPREFIX}-${DISTNAME}
|
|
CATEGORIES= devel python
|
|
MASTER_SITES= ${MASTER_SITE_PYPI:=a/autopep8/}
|
|
|
|
MAINTAINER= minskim@NetBSD.org
|
|
HOMEPAGE= https://github.com/hhatto/autopep8
|
|
COMMENT= Automatic formatter of Python code to conform to PEP 8
|
|
LICENSE= mit
|
|
|
|
DEPENDS+= ${PYPKGPREFIX}-codestyle>=2.3:../../devel/py-codestyle
|
|
|
|
USE_LANGUAGES= # none
|
|
|
|
post-install:
|
|
cd ${DESTDIR}${PREFIX}/bin && \
|
|
${MV} autopep8 autopep8-${PYVERSSUFFIX} || ${TRUE}
|
|
|
|
.include "../../lang/python/egg.mk"
|
|
.include "../../mk/bsd.pkg.mk"
|