From: Michael Lauer Date: Mon, 5 Sep 2005 10:06:43 +0000 (+0000) Subject: add tinyscheme, a lightweight scheme interpreter X-Git-Tag: Release-2010-05/1~9453^2~3641^2~1 X-Git-Url: https://git.openpandora.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=ef7f5b5e80a00006b4849b20fffb89a550faa8d1;p=openembedded.git add tinyscheme, a lightweight scheme interpreter --- diff --git a/packages/tinyscheme/.mtn2git_empty b/packages/tinyscheme/.mtn2git_empty new file mode 100644 index 0000000000..e69de29bb2 diff --git a/packages/tinyscheme/tinyscheme_1.35.bb b/packages/tinyscheme/tinyscheme_1.35.bb new file mode 100644 index 0000000000..f66a322c6f --- /dev/null +++ b/packages/tinyscheme/tinyscheme_1.35.bb @@ -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}"