1
0
mirror of https://git.FreeBSD.org/ports.git synced 2025-01-13 07:34:50 +00:00
freebsd-ports/security/caesarcipher/Makefile
Tobias Kortkamp e9e0d32a7c New port: security/caesarcipher
caesarcipher is an implementation of the traditional Caesar cipher
encryption algorithm with an extension to all printable ASCII
characters.  It can be run as an interactive tool on the command
line or process input- and outputfiles that are passed to the
ultility.

WWW: http://www.olivermahmoudi.com/programming/caesarcipher

PR:		222760
Submitted by:	Oliver Mahmoudi <fbsd@olivermahmoudi.com>
2019-01-25 08:53:06 +00:00

25 lines
575 B
Makefile

# $FreeBSD$
PORTNAME= caesarcipher
PORTVERSION= 1.0
CATEGORIES= security
MASTER_SITES= http://www.olivermahmoudi.com/files/
MAINTAINER= fbsd@olivermahmoudi.com
COMMENT= Caesar cipher cryptography tool
LICENSE= BSD2CLAUSE
PLIST_FILES= bin/caesarcipher \
man/man1/caesarcipher.1.gz
WRKSRC= ${WRKDIR}/${PORTNAME}
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>