pkgsrc-wip/slate/Makefile
Michal Pasternak 3cb005545e Initial import.
TODO:
$Id$

Make PLIST, when it builds.

Currently:
> :ld build.lisp
;;; Loading "build.lisp"
;;; Loading "object.lisp"
;;; Loading "no-cache.lisp"
;;; Loading "compiler.lisp"
;;; Loading "prims.lisp"
There is no package with the name COMPILER.
Broken at MAPC.


	-- dotz@irc.pl


DESCR:
Slate is a prototype-based object-oriented programming language based on
Self, CLOS, and Smalltalk. Slate syntax is intended to be as familiar as
possible to a Smalltalker, rather than engaging in divergent experiments in
that respect. Unlike the Smalltalk family, within Slate, methods can be
assigned to a signature of objects, instead of being installed on one
favored receiver. Slate has also many further expansions of the semantics
which interest advanced users.
2004-03-28 01:40:21 +00:00

23 lines
521 B
Makefile

# $NetBSD: Makefile,v 1.1.1.1 2004/03/28 01:40:21 mpasternak Exp $
#
DISTNAME= slate-0.2.2
CATEGORIES= lang
MASTER_SITES= http://slate.tunes.org/downloads/
EXTRACT_SUFX= .tgz
MAINTAINER= dotz@irc.pl
HOMEPAGE= http://slate.tunes.org/
COMMENT= Prototype-based object-oriented programming language
BUILD_DEPENDS+= ecl>=0.9c:../../wip/ecl
WRKSRC= ${WRKDIR}/slate-0-2-2
CONFIGURE_ENV+= LSPCFLAGS="-I"
do-build:
cd ${WRKSRC} && \
${ECHO} ":ld build.lisp" | ${PREFIX}/bin/ecl
.include "../../mk/bsd.pkg.mk"