30 lines
565 B
Makefile
30 lines
565 B
Makefile
# $OpenBSD: Makefile,v 1.6 2017/02/11 18:50:20 shadchin Exp $
|
|
|
|
COMMENT = python style guide checker
|
|
|
|
MODPY_EGG_VERSION = 2.3.1
|
|
DISTNAME = pycodestyle-${MODPY_EGG_VERSION}
|
|
PKGNAME = py-codestyle-${MODPY_EGG_VERSION}
|
|
|
|
CATEGORIES = devel
|
|
|
|
HOMEPAGE = https://github.com/PyCQA/pycodestyle
|
|
|
|
MAINTAINER= Alexandr Shadchin <shadchin@openbsd.org>
|
|
|
|
# Expat
|
|
PERMIT_PACKAGE_CDROM = 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>
|