33 lines
612 B
Makefile
33 lines
612 B
Makefile
# $OpenBSD: Makefile,v 1.2 2017/01/03 19:19:48 landry Exp $
|
|
|
|
COMMENT = list-like type with better asymptotic performance
|
|
|
|
MODPY_EGG_VERSION = 1.3.6
|
|
DISTNAME = blist-${MODPY_EGG_VERSION}
|
|
PKGNAME = py-${DISTNAME}
|
|
CATEGORIES = devel
|
|
REVISION = 0
|
|
|
|
HOMEPAGE = http://stutzbachenterprises.com/blist/
|
|
|
|
MAINTAINER = Eric Faurot <eric@openbsd.org>
|
|
|
|
# BSD
|
|
PERMIT_PACKAGE_CDROM = Yes
|
|
|
|
WANTLIB = pthread ${MODPY_WANTLIB}
|
|
|
|
MODULES = lang/python
|
|
|
|
MODPY_PI = Yes
|
|
MODPY_SETUPTOOLS = Yes
|
|
|
|
FLAVORS= python3
|
|
FLAVOR?=
|
|
|
|
# fix weird permissions in the sources
|
|
post-extract:
|
|
chmod -R a+r ${WRKSRC}
|
|
|
|
.include <bsd.port.mk>
|