ports/math/lambda/Makefile
Raphael Kubo da Costa a5d3a7ab28 Switch to a working MASTER_SITE, regenerate distinfo and unmark BROKEN.
Switch to fetching the source tarball from the website indicated in WWW. It
is slightly different from the previous tarball: some build system files
were generated by a more recent version of autotools, the documentation
contains a typo fix and its ChangeLog mentions this fix.
2016-01-01 15:49:44 +00:00

37 lines
850 B
Makefile

# Created by: ijliao
# $FreeBSD$
PORTNAME= lambda
PORTVERSION= 0.1.4
CATEGORIES= math
MASTER_SITES= http://uniquesoftwaredesigns.com/${PORTNAME}/
MAINTAINER= ports@FreeBSD.org
COMMENT= Lambda calculus interpreter
LICENSE= GPLv2
USES= perl5 readline shebangfix
USE_PERL5= build
SHEBANG_FILES= docs/trans_xml_for_cat.pl
GNU_CONFIGURE= yes
OPTIONS_DEFINE= DOCS
PLIST_FILES= bin/lambda \
share/lambda/definitions \
share/lambda/definitions_with_numbers
DOCS= lambda.html lambdamanual.html user_manual_style.css
PORTDOCS= *
do-install:
${INSTALL_PROGRAM} ${WRKSRC}/lambda ${STAGEDIR}${PREFIX}/bin
@${MKDIR} ${STAGEDIR}${DATADIR}
${INSTALL_DATA} ${WRKSRC}/definitions* ${STAGEDIR}${DATADIR}
@${MKDIR} ${STAGEDIR}${DOCSDIR}
.for file in ${DOCS}
${INSTALL_DATA} ${WRKSRC}/docs/${file} ${STAGEDIR}${DOCSDIR}
.endfor
.include <bsd.port.mk>