mirror of
https://git.FreeBSD.org/ports.git
synced 2024-12-12 03:00:28 +00:00
065c026fe5
PR: 204056 Submitted by: mat Reviewed by: bapt Sponsored by: Absolight Differential Revision: https://reviews.freebsd.org/D2735
33 lines
707 B
Makefile
33 lines
707 B
Makefile
# Created by: dd
|
|
# $FreeBSD$
|
|
|
|
PORTNAME= solitaire
|
|
PORTVERSION= 19980817
|
|
PORTREVISION= 1
|
|
CATEGORIES= math
|
|
MASTER_SITES= LOCAL/dd
|
|
DISTFILES= sol.pl sol-test.txt
|
|
|
|
MAINTAINER= ports@FreeBSD.org
|
|
COMMENT= Reference implementation of the Solitaire encryption algorithm
|
|
|
|
USES= perl5 shebangfix
|
|
SHEBANG_FILES= sol.pl
|
|
|
|
NO_BUILD= yes
|
|
NO_WRKSUBDIR= yes
|
|
STRIP=
|
|
|
|
OPTIONS_DEFINE= DOCS
|
|
|
|
do-extract:
|
|
@${CP} ${DISTDIR}/sol.pl ${DISTDIR}/sol-test.txt ${WRKSRC}
|
|
|
|
do-install:
|
|
${INSTALL_PROGRAM} ${WRKSRC}/sol.pl ${STAGEDIR}${PREFIX}/bin/solitaire
|
|
@${MKDIR} ${STAGEDIR}${PREFIX}/share/doc/solitaire
|
|
${INSTALL_DATA} ${WRKSRC}/sol.pl ${WRKSRC}/sol-test.txt \
|
|
${STAGEDIR}${PREFIX}/share/doc/solitaire
|
|
|
|
.include <bsd.port.mk>
|