33 lines
581 B
Makefile
33 lines
581 B
Makefile
# $OpenBSD: Makefile,v 1.4 2014/09/29 07:02:02 jasper Exp $
|
|
|
|
COMMENT= bcrypt blowfish password hashing for Python
|
|
|
|
MODPY_EGG_VERSION= 0.4
|
|
DISTNAME= py-bcrypt-${MODPY_EGG_VERSION}
|
|
|
|
REVISION = 1
|
|
|
|
CATEGORIES= security
|
|
|
|
HOMEPAGE= https://code.google.com/p/py-bcrypt/
|
|
|
|
# ISC/BSD
|
|
PERMIT_PACKAGE_CDROM= Yes
|
|
|
|
WANTLIB += pthread ${MODPY_WANTLIB}
|
|
|
|
MASTER_SITES= https://py-bcrypt.googlecode.com/files/
|
|
|
|
MODULES= lang/python
|
|
MODPY_SETUPTOOLS= Yes
|
|
|
|
FLAVORS= python3
|
|
FLAVOR?=
|
|
|
|
TEST_DEPENDS= ${BUILD_PKGPATH}
|
|
|
|
do-test:
|
|
cd ${WRKSRC}/test && ${MODPY_BIN} ./test.py
|
|
|
|
.include <bsd.port.mk>
|