freebsd-ports/security/vigenere/Makefile
Fernando Apesteguía 4fd4371bbb new port: security/vigenere: cipher algorithm tool
vigenere is an implementation of the Vigenere cipher algorithm extended
to the entire set of printable ASCII characters

https://www.olivermahmoudi.com/programming/vigenere-cipher/

PR:	247244
Submitted by:	fbsd@olivermahmoudi.com
2020-06-18 06:57:44 +00:00

24 lines
566 B
Makefile

# $FreeBSD$
PORTNAME= vigenere
PORTVERSION= 1.0
CATEGORIES= security
MASTER_SITES= http://www.olivermahmoudi.com/files/
MAINTAINER= fbsd@olivermahmoudi.com
COMMENT= Vigenere cipher cryptography tool
LICENSE= BSD2CLAUSE
LICENSE_FILE= ${WRKSRC}/LICENSE
PLIST_FILES= bin/vigenere \
man/man1/vigenere.1.gz
do-build:
cd ${WRKSRC} && ${CC} ${CFLAGS} ${LDFLAGS} -o ${PORTNAME} ${PORTNAME}.c
do-install:
${INSTALL_PROGRAM} ${WRKSRC}/${PORTNAME} ${STAGEDIR}${PREFIX}/bin
${INSTALL_MAN} ${WRKSRC}/${PORTNAME}.1 ${STAGEDIR}${PREFIX}/man/man1
.include <bsd.port.mk>