opnsense-ports/security/caesarcipher/Makefile
Franco Fichtner 3f7cf4a527 */*: sync with upstream
Taken from: HardenedBSD
2019-01-26 17:46:29 +01:00

24 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>