22 lines
421 B
Makefile
22 lines
421 B
Makefile
# Created by: Neil Booth
|
|
# $FreeBSD$
|
|
|
|
PORTNAME= ecdsa
|
|
PORTVERSION= 0.8
|
|
CATEGORIES= security python
|
|
MASTER_SITES= CHEESESHOP
|
|
PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX}
|
|
|
|
MAINTAINER= kyuupichan@gmail.com
|
|
COMMENT= ECDSA cryptographic signature library (pure python)
|
|
|
|
LICENSE= MIT
|
|
|
|
USE_PYTHON= -2.7
|
|
USE_PYDISTUTILS= yes
|
|
|
|
regression-test: build
|
|
@cd ${WRKSRC} && ${PYTHON_CMD} ${PYSETUP} test
|
|
|
|
NO_STAGE= yes
|
|
.include <bsd.port.mk>
|