mirror of
https://git.FreeBSD.org/ports.git
synced 2025-01-04 06:15:24 +00:00
737f1f288e
- Changed core language (see README) - Added KANREN-like logic programming extensions (examples/amk) - Added M-expression compiler (examples/mexprc) - Added loads of example programs (examples/misc) - Looking up default image in $PREFIX now rather than in /usr/local PR: 100440 Submitted by: Nils M Holm (maintainer)
30 lines
561 B
Makefile
30 lines
561 B
Makefile
# New ports collection makefile for: ArrowLISP
|
|
# Date created: 12 Aug 2003
|
|
# Whom: Nils M Holm <nmh@t3x.org>
|
|
#
|
|
# $FreeBSD$
|
|
#
|
|
|
|
PORTNAME= alisp
|
|
PORTVERSION= 20060717
|
|
CATEGORIES= lang devel lisp
|
|
MASTER_SITES= http://www.t3x.org/files/
|
|
|
|
MAINTAINER= nmh@t3x.org
|
|
COMMENT= An interpreter for purely symbolic LISP
|
|
|
|
MAN7= alisp.7
|
|
MANCOMPRESSED= no
|
|
|
|
INSTALLS_SHLIB= yes
|
|
MAKE_ENV+= BINOWN=${BINOWN} \
|
|
BINGRP=${BINGRP} \
|
|
PREFIX=${PREFIX}
|
|
|
|
USE_REINPLACE= yes
|
|
|
|
post-patch:
|
|
${REINPLACE_CMD} -e 's,/usr/local,${PREFIX},g' ${WRKSRC}/alisp.h
|
|
|
|
.include <bsd.port.mk>
|