1
0
mirror of https://git.FreeBSD.org/ports.git synced 2024-10-27 21:29:02 +00:00
freebsd-ports/lang/caml-light/Makefile
Joseph Koshy a2103efd20 A light weight implementation of CAML, a strongly typed functional
language belonging to the ML family.
1998-07-28 06:25:43 +00:00

38 lines
1.0 KiB
Makefile

# New ports collection makefile for: CAML
# Version required: 0.74
# Date created: 21 July 1998
# Whom: jkoshy
#
# $Id$
#
DISTNAME= cl74unix
PKGNAME= caml-0.74
CATEGORIES= lang
MASTER_SITES= ftp://ftp.inria.fr/lang/caml-light/ \
ftp://sunsite.doc.ic.ac.uk/computing/programming/languages/ml/caml-light/ \
ftp://arcadia.informatik.uni-muenchen.de/pub/comp/programming/languages/caml-light/ \
ftp://sunsite.icm.edu.pl/pub/programming/caml/ \
http://wwwfun.kurims.kyoto-u.ac.jp/soft/caml-light/
MAINTAINER= jkoshy@freebsd.org
WRKSRC= ${WRKDIR}/cl74
ALL_TARGET= configure world bootstrap
MAN1= camlc.1 camllex.1 camllibr.1 camllight.1 camlmktop.1 camlrun.1 camlyacc.1 mletags.1 camllorder.1 camlsearch.1
do-build:
cd ${WRKSRC}/src; ${MAKE} ${ALL_TARGET} PREFIX=${PREFIX} \
X11BASE=${X11BASE}
do-install:
cd ${WRKSRC}/src; ${MAKE} ${INSTALL_TARGET} PREFIX=${PREFIX} \
X11BASE=${X11BASE}
# build some contrib stuff too
post-install:
cd ${WRKSRC}/contrib; ${MAKE} all ${INSTALL_TARGET} PREFIX=${PREFIX} \
X11BASE=${X11BASE}
.include <bsd.port.mk>