diff options
author | jschauma <jschauma@pkgsrc.org> | 2002-05-08 15:42:00 +0000 |
---|---|---|
committer | jschauma <jschauma@pkgsrc.org> | 2002-05-08 15:42:00 +0000 |
commit | e14a1e0c8bd9bb2e6ecf98b129d362ef0faf0839 (patch) | |
tree | d59576f03f8c1105d72170327cdc1c5b6e9ed86d /lang/joos/Makefile | |
parent | f45a8b48a03eba04e43c3e0aefc75a44c733380b (diff) | |
download | pkgsrc-e14a1e0c8bd9bb2e6ecf98b129d362ef0faf0839.tar.gz |
Initial import of "Joos":
Joos is an acronym for Java's Object-Oriented Subset. JOOS is a
proper subset of Java which is used to teach students about compilers.
Diffstat (limited to 'lang/joos/Makefile')
-rw-r--r-- | lang/joos/Makefile | 22 |
1 files changed, 22 insertions, 0 deletions
diff --git a/lang/joos/Makefile b/lang/joos/Makefile new file mode 100644 index 00000000000..b26ecec9b2d --- /dev/null +++ b/lang/joos/Makefile @@ -0,0 +1,22 @@ +# $NetBSD: Makefile,v 1.1 2002/05/08 15:42:00 jschauma Exp $ +# + +DISTNAME= joos-0.1 +CATEGORIES= lang +MASTER_SITES= ftp://netbsd.stevens-tech.edu/pub/NetBSD/packages/distfiles/ +EXTRACT_SUFX= .tar.bz2 + +MAINTAINER= jschauma@netbsd.org +HOMEPAGE= http://www.brics.dk/~mis/dOvs/index.html +COMMENT= Java Object Oriented Subset + +USE_JAVA= yes + +# This is ugly. The chown should happen after copying, or tar should have +# a way to override permissions. +do-install: + ${INSTALL_PROGRAM_DIR} ${PREFIX}/joos + ${CHOWN} -hR ${BINOWN}:${BINGRP} ${WRKSRC} + ${GTAR} -C ${WRKSRC} -cf- . | ${GTAR} -C ${PREFIX}/joos -xpf- + +.include "../../mk/bsd.pkg.mk" |