34 lines
621 B
Makefile
34 lines
621 B
Makefile
# $OpenBSD: Makefile,v 1.17 2015/04/11 13:36:39 benoit Exp $
|
|
|
|
COMMENT = classes and setuptools plugin for Mercurial repositories
|
|
|
|
MODPY_EGG_VERSION = 6.3
|
|
DISTNAME = hgtools-${MODPY_EGG_VERSION}
|
|
PKGNAME = py-${DISTNAME}
|
|
CATEGORIES = devel
|
|
|
|
HOMEPAGE = https://bitbucket.org/jaraco/hgtools/
|
|
|
|
MAINTAINER = Benoit Lecocq <benoit@openbsd.org>
|
|
|
|
# MIT
|
|
PERMIT_PACKAGE_CDROM = Yes
|
|
|
|
MODPY_PI = Yes
|
|
EXTRACT_SUFX = .zip
|
|
|
|
MODULES = lang/python
|
|
MODPY_SETUPTOOLS = Yes
|
|
|
|
FLAVORS = python3
|
|
FLAVOR ?=
|
|
|
|
RUN_DEPENDS = devel/mercurial
|
|
|
|
NO_TEST = Yes
|
|
|
|
pre-install:
|
|
chmod 644 ${WRKSRC}/hgtools.egg-info/*
|
|
|
|
.include <bsd.port.mk>
|