mirror of
https://git.FreeBSD.org/ports.git
synced 2024-11-26 00:55:14 +00:00
39 lines
795 B
Makefile
39 lines
795 B
Makefile
# Created by: ijliao
|
|
# $FreeBSD$
|
|
|
|
PORTNAME= lambda
|
|
PORTVERSION= 0.1.4
|
|
CATEGORIES= math
|
|
MASTER_SITES= http://www.freebsdbrasil.com.br/~jmelo/
|
|
|
|
MAINTAINER= ports@FreeBSD.org
|
|
COMMENT= A lambda calculus interpreter
|
|
|
|
USES= perl5
|
|
USE_PERL5= build
|
|
GNU_CONFIGURE= yes
|
|
|
|
PLIST_FILES= bin/lambda \
|
|
share/lambda/definitions \
|
|
share/lambda/definitions_with_numbers
|
|
PLIST_DIRS= share/lambda
|
|
|
|
.if !defined(NOPORTDOCS)
|
|
DOCS= lambda.html lambdamanual.html user_manual_style.css
|
|
PORTDOCS= *
|
|
.endif
|
|
|
|
NO_STAGE= yes
|
|
do-install:
|
|
${INSTALL_PROGRAM} ${WRKSRC}/lambda ${PREFIX}/bin
|
|
@${MKDIR} ${DATADIR}
|
|
${INSTALL_DATA} ${WRKSRC}/definitions* ${DATADIR}
|
|
.if !defined(NOPORTDOCS)
|
|
@${MKDIR} ${DOCSDIR}
|
|
.for file in ${DOCS}
|
|
${INSTALL_DATA} ${WRKSRC}/docs/${file} ${DOCSDIR}
|
|
.endfor
|
|
.endif
|
|
|
|
.include <bsd.port.mk>
|