1
0
mirror of https://git.FreeBSD.org/ports.git synced 2024-12-23 04:23:08 +00:00
freebsd-ports/security/py-rijndael/Makefile
Ying-Chieh Liao ca7f19c4af add py-rijndael
A pure python implementation of the Rijndael encryption algorithm
2001-07-23 09:03:45 +00:00

34 lines
751 B
Makefile

# ex:ts=8
# New ports collection makefile for: py-rijndael
# Date created: Jul 23, 2001
# Whom: ijliao
#
# $FreeBSD$
#
PORTNAME= rijndael
PORTVERSION= 1.1
CATEGORIES= security python
MASTER_SITES= http://bluesine.com/archives/software/python-mods/rijndael/
PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX}
DISTNAME= pyRijndael-${PORTVERSION}.py
EXTRACT_SUFX= .gz
MAINTAINER= ports@FreeBSD.org
EXTRACT_AFTER_ARGS= > ${DISTNAME}
USE_PYTHON= yes
NO_WRKSUBDIR= yes
post-extract:
@${MV} ${WRKSRC}/${DISTNAME} ${WRKSRC}/pyRijndael.py
do-build:
@cd ${WRKSRC} && ${PYTHON_CMD} -c 'import pyRijndael'
@cd ${WRKSRC} && ${PYTHON_CMD} -O -c 'import pyRijndael'
do-install:
@${INSTALL_DATA} ${WRKSRC}/pyRijndael.* ${PYTHON_SITELIBDIR}
.include <bsd.port.mk>