31 lines
559 B
Makefile
31 lines
559 B
Makefile
# $OpenBSD: Makefile,v 1.6 2020/07/03 21:12:41 sthen 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 = 3
|
|
|
|
HOMEPAGE = http://stutzbachenterprises.com/blist/
|
|
|
|
# BSD
|
|
PERMIT_PACKAGE = 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>
|