add tinyscheme, a lightweight scheme interpreter
authorMichael Lauer <mickey@vanille-media.de>
Mon, 5 Sep 2005 10:06:43 +0000 (10:06 +0000)
committerOpenEmbedded Project <openembedded-devel@lists.openembedded.org>
Mon, 5 Sep 2005 10:06:43 +0000 (10:06 +0000)
packages/tinyscheme/.mtn2git_empty [new file with mode: 0644]
packages/tinyscheme/tinyscheme_1.35.bb [new file with mode: 0644]

diff --git a/packages/tinyscheme/.mtn2git_empty b/packages/tinyscheme/.mtn2git_empty
new file mode 100644 (file)
index 0000000..e69de29
diff --git a/packages/tinyscheme/tinyscheme_1.35.bb b/packages/tinyscheme/tinyscheme_1.35.bb
new file mode 100644 (file)
index 0000000..f66a322
--- /dev/null
@@ -0,0 +1,21 @@
+DESCRIPTION = "TinyScheme is a lightweight Scheme interpreter that implements as large a subset of R5RS \
+as was possible without getting very large and complicated."
+SECTION = "devel"
+LICENSE = "BSD"
+
+SRC_URI = "http://tinyscheme.sourceforge.net/tinyscheme-${PV}.tar.gz"
+
+EXTRA_OEMAKE = "-e scheme libtinyscheme.so"
+
+export LD="${CCLD}"
+
+do_install() {
+       install -d ${D}${bindir}
+       install -d ${D}${libdir}
+       oe_libinstall -so libtinyscheme ${D}${libdir}
+       install -m 0755 scheme ${D}${bindir}
+}
+
+PACKAGES =+ "libtinyscheme"
+FILES_libtinyscheme = "${libdir}"
+FILES_${PN} = "${bindir}"