28 lines
449 B
Makefile
28 lines
449 B
Makefile
COMMENT = support for the scrypt key derivation function
|
|
|
|
MODPY_EGG_VERSION = 0.8.20
|
|
|
|
DISTNAME = scrypt-${MODPY_EGG_VERSION}
|
|
PKGNAME = py-${DISTNAME}
|
|
REVISION = 0
|
|
|
|
CATEGORIES = security
|
|
|
|
HOMEPAGE = http://bitbucket.org/mhallin/py-scrypt
|
|
|
|
# BSD
|
|
PERMIT_PACKAGE = Yes
|
|
|
|
WANTLIB += crypto pthread
|
|
|
|
MODULES = lang/python
|
|
|
|
MODPY_PI = Yes
|
|
MODPY_SETUPTOOLS = Yes
|
|
MODPY_PYTEST_ARGS = scrypt/tests
|
|
|
|
FLAVORS = python3
|
|
FLAVOR = python3
|
|
|
|
.include <bsd.port.mk>
|