diff options
author | mrg <mrg> | 2002-04-03 17:54:10 +0000 |
---|---|---|
committer | mrg <mrg> | 2002-04-03 17:54:10 +0000 |
commit | a2a499eaa0afe6d10f82a550aa8b49dd6f7959c5 (patch) | |
tree | 33e08167499832dff3dee258d3e8d2bace5699a3 /lang/onyx/Makefile | |
parent | 428a2bcbb7a6e2197c1f69a5c973dfc75f6af5ac (diff) | |
download | pkgsrc-a2a499eaa0afe6d10f82a550aa8b49dd6f7959c5.tar.gz |
(oops; do this in the right place.)
initial import of onyx 3.0.2 package. from DESCR:
Onyx is an embeddable stack-based threaded interpreted language. This package
contains both a stand alone interpreter and a library that can be used to embed
Onyx in an application. Extensive documentation is included.
WWW: http://www.canonware.com/
Diffstat (limited to 'lang/onyx/Makefile')
-rw-r--r-- | lang/onyx/Makefile | 29 |
1 files changed, 29 insertions, 0 deletions
diff --git a/lang/onyx/Makefile b/lang/onyx/Makefile new file mode 100644 index 00000000000..893cb79f05a --- /dev/null +++ b/lang/onyx/Makefile @@ -0,0 +1,29 @@ +# $NetBSD: Makefile,v 1.1.1.1 2002/04/03 17:54:10 mrg Exp $ + +DISTNAME= onyx-${VERS} +CATEGORIES= lang +MASTER_SITES= http://www.canonware.com/download/onyx/ + +MAINTAINER= packages@netbsd.org +HOMEPAGE= http://www.canonware.com/ +COMMENT= Embeddable stack-based threaded interpreted language + +BUILD_DEPENDS= cook-*:../../devel/cook + +GNU_CONFIGURE= yes +# XXX +CONFIGURE_ARGS+= --disable-threads + +VERS= 3.0.2 +PLIST_SUBST+= VERS=${VERS} + +do-build: + @(cd ${WRKSRC}; ${SETENV} ${MAKE_ENV} cook) + +do-install: + @(cd ${WRKSRC}; ${SETENV} ${MAKE_ENV} cook install) + +post-install: + @strip ${PREFIX}/bin/onyx + +.include "../../mk/bsd.pkg.mk" |