1
0
mirror of https://git.FreeBSD.org/ports.git synced 2024-11-01 22:05:08 +00:00
freebsd-ports/lang/moscow_ml/Makefile
Chuck Robey 5b2f4c2d0e Submitted by: chuckr
New version of the sml programming language, based upon caml.
1996-07-28 02:44:11 +00:00

35 lines
1.0 KiB
Makefile

# New ports collection makefile for: moscow-ml
# Version required: 1.4
# Date created: 26 July 1996
# Whom: chuckr
#
# $Id
#
DISTNAME= mos14src
CATEGORIES+= lang
PKGNAME= moscow_ml
MASTER_SITES= ftp://ftp.dina.kvl.dk/pub/mosml/ \
ftp://ftp.csd.uu.se/pub/mirror/mosml/ \
ftp://ftp.dcs.ed.ac.uk/pub/ml/Moscow/
MAINTAINER= chuckr@freefall.FreeBSD.org
ALL_TARGET= world
WRKSRC= ${WRKDIR}/mosml/src
post-install:
.if !defined(NOPORTDOCS)
mkdir -p ${PREFIX}/${PKGNAME}/doc
mkdir -p ${PREFIX}/${PKGNAME}/examples
for file in ${WRKDIR}/mosml/doc/*;do; \
install -c -m 0444 -g bin -o bin $${file} ${PREFIX}/${PKGNAME}/doc;done
(cd ${WRKDIR}/mosml/examples; \
install -c -m 0444 -g bin -o bin README ${PREFIX}/${PKGNAME}/examples; \
for sdirs in manual mls helpsigs calc pretty lexyacc;do; \
mkdir -p ${PREFIX}/${PKGNAME}/examples/$${sdirs}; \
for file in $${sdirs}/*;do; \
install -c -m 0444 -g bin -o bin $${file} ${PREFIX}/${PKGNAME}/examples/$${sdirs}; \
done; done;)
.endif
.include <bsd.port.mk>