286c3fdc4a
1.5.1: fix bugs
22 lines
605 B
Makefile
22 lines
605 B
Makefile
# $NetBSD: Makefile,v 1.12 2020/04/07 10:43:30 adam Exp $
|
|
|
|
DISTNAME= autopep8-1.5.1
|
|
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.5.0:../../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"
|