freebsd-ports/security/caesarcipher/Makefile
Hiroki Tagato 2054eb18e8 - Update to 1.1
- Add LICENSE_FILE
- Make portclippy happy

PR:		247186
Submitted by:	Oliver Mahmoudi <fbsd@olivermahmoudi.com> (maintainer)
Approved by:	mentors (implicit)
Changelog:	https://github.com/olimah/caesarcipher/blob/v1.1/Changelog
2020-06-13 07:46:40 +00:00

27 lines
626 B
Makefile

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