28 lines
501 B
Makefile
28 lines
501 B
Makefile
# $OpenBSD: Makefile,v 1.10 2019/08/13 23:19:10 kmos Exp $
|
|
|
|
COMMENT = python style guide checker
|
|
|
|
MODPY_EGG_VERSION = 2.5.0
|
|
DISTNAME = pycodestyle-${MODPY_EGG_VERSION}
|
|
PKGNAME = py-codestyle-${MODPY_EGG_VERSION}
|
|
|
|
CATEGORIES = devel
|
|
|
|
HOMEPAGE = https://github.com/PyCQA/pycodestyle
|
|
|
|
# Expat
|
|
PERMIT_PACKAGE = Yes
|
|
|
|
MODULES = lang/python
|
|
|
|
MODPY_PI = Yes
|
|
MODPY_SETUPTOOLS = Yes
|
|
|
|
FLAVORS = python3
|
|
FLAVOR ?=
|
|
|
|
post-install:
|
|
mv ${PREFIX}/bin/pycodestyle{,${MODPY_BIN_SUFFIX}}
|
|
|
|
.include <bsd.port.mk>
|