mirror of
https://git.FreeBSD.org/ports.git
synced 2024-12-16 03:24:07 +00:00
5d9ee1ab9d
the Maintainer. Besides, everyone knows that there ain't no Sanity Clause. Reminded by: arved
33 lines
733 B
Makefile
33 lines
733 B
Makefile
# New ports collection makefile for: solitaire
|
|
# Date created: 11 June 2001
|
|
# Whom: dd
|
|
#
|
|
# $FreeBSD$
|
|
#
|
|
|
|
PORTNAME= solitaire
|
|
PORTVERSION= 19980817
|
|
CATEGORIES= math
|
|
MASTER_SITES= ${MASTER_SITE_LOCAL}
|
|
MASTER_SITE_SUBDIR= dd
|
|
DISTFILES= sol.pl sol-test.txt
|
|
|
|
MAINTAINER= ports@FreeBSD.org
|
|
COMMENT= The reference implementation of the Solitaire encryption algorithm
|
|
|
|
NO_BUILD= yes
|
|
NO_WRKSUBDIR= yes
|
|
STRIP=
|
|
|
|
do-extract:
|
|
@${MKDIR} ${WRKDIR}
|
|
@${CP} -r ${DISTDIR}/sol.pl ${DISTDIR}/sol-test.txt ${WRKDIR}
|
|
|
|
do-install:
|
|
@${INSTALL_PROGRAM} ${WRKSRC}/sol.pl ${PREFIX}/bin/solitaire
|
|
@${MKDIR} ${PREFIX}/share/doc/solitaire
|
|
@${INSTALL_DATA} ${WRKSRC}/sol.pl ${WRKSRC}/sol-test.txt \
|
|
${PREFIX}/share/doc/solitaire
|
|
|
|
.include <bsd.port.mk>
|