python3 only ports. "Yes please, it's not really optional so I think = is better." sthen@
29 lines
484 B
Makefile
29 lines
484 B
Makefile
# $OpenBSD: Makefile,v 1.3 2020/08/19 12:25:12 ajacoutot Exp $
|
|
|
|
COMMENT = implemention of the crc32c algorithm in hardware
|
|
|
|
MODPY_EGG_VERSION = 2.0
|
|
|
|
DISTNAME = crc32c-${MODPY_EGG_VERSION}
|
|
PKGNAME = py-${DISTNAME}
|
|
REVISION = 0
|
|
|
|
CATEGORIES = devel
|
|
|
|
HOMEPAGE = https://github.com/ICRAR/crc32c
|
|
|
|
# LGPLv2.1+
|
|
PERMIT_PACKAGE = Yes
|
|
|
|
MODULES = lang/python
|
|
|
|
WANTLIB = pthread ${MODPY_WANTLIB}
|
|
|
|
MODPY_PI = Yes
|
|
MODPY_SETUPTOOLS = Yes
|
|
|
|
FLAVORS = python3
|
|
FLAVOR = python3
|
|
|
|
.include <bsd.port.mk>
|