summaryrefslogtreecommitdiff
path: root/math/lambda/Makefile
blob: 778828c471bbfee900a3e56b05e857c0bfd218fa (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
PORTNAME=	lambda
PORTVERSION=	0.1.4
PORTREVISION=	2
CATEGORIES=	math
MASTER_SITES=	http://uniquesoftwaredesigns.com/${PORTNAME}/

MAINTAINER=	bofh@FreeBSD.org
COMMENT=	Lambda calculus interpreter
WWW=		https://uniquesoftwaredesigns.com/lambda/docs/lambda.html

LICENSE=	GPLv2

USES=		perl5 ncurses readline shebangfix
USE_CXXSTD=	c++14
USE_PERL5=	build

SHEBANG_FILES=	docs/trans_xml_for_cat.pl

GNU_CONFIGURE=	yes

PLIST_FILES=	bin/lambda \
		share/lambda/definitions \
		share/lambda/definitions_with_numbers

DOCS=		lambda.html lambdamanual.html user_manual_style.css
PORTDOCS=	*

OPTIONS_DEFINE=	DOCS

post-patch:
	${REINPLACE_CMD} -e 's|-ltermcap|-lncurses|' ${WRKSRC}/configure \
		${WRKSRC}/Makefile.in ${WRKSRC}/Makefile.am

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>