mirror of
https://git.FreeBSD.org/ports.git
synced 2024-11-27 00:57:50 +00:00
b9be73d75e
Feature safe: yes
28 lines
548 B
Makefile
28 lines
548 B
Makefile
# Created by: ijliao
|
|
# $FreeBSD$
|
|
|
|
PORTNAME= fc++
|
|
PORTVERSION= 1.5
|
|
CATEGORIES= devel
|
|
MASTER_SITES= http://people.cs.umass.edu/~yannis/fc++/
|
|
DISTNAME= ${PORTNAME:U}.${PORTVERSION}
|
|
|
|
MAINTAINER= ports@FreeBSD.org
|
|
COMMENT= Functional Programming in C++
|
|
|
|
OPTIONS_DEFINE= DOCS
|
|
|
|
NO_BUILD= yes
|
|
|
|
.include <bsd.port.options.mk>
|
|
|
|
do-install:
|
|
@${MKDIR} ${PREFIX}/include/fc++
|
|
${INSTALL_DATA} ${WRKSRC}/*.h ${PREFIX}/include/fc++
|
|
.if ${PORT_OPTIONS:MDOCS}
|
|
@${MKDIR} ${DOCSDIR}
|
|
${INSTALL_DATA} ${WRKSRC}/changes.html ${DOCSDIR}
|
|
.endif
|
|
|
|
.include <bsd.port.mk>
|