summaryrefslogtreecommitdiff
path: root/packages
diff options
context:
space:
mode:
authorKoen Kooi <koen@openembedded.org>2005-09-05 15:31:15 +0000
committerOpenEmbedded Project <openembedded-devel@lists.openembedded.org>2005-09-05 15:31:15 +0000
commita7e0429eeb5117c75fff0e2da0e07bc1a89f0dfc (patch)
tree63b8033f437c37706beac1338a813d679ca4cef7 /packages
parent81f8eae17311d69807ef85d3b31cc020c7276d02 (diff)
parentc21cf2500b321c5988cd137178d395d13e74e68b (diff)
merge of 4d61b91c4301e551e3af7c94c94703dd49b8a5c3
and a9ca95824a4fece974acb09126b3dc72162d45c0
Diffstat (limited to 'packages')
-rw-r--r--packages/tinyscheme/.mtn2git_empty0
-rw-r--r--packages/tinyscheme/tinyscheme_1.35.bb21
2 files changed, 21 insertions, 0 deletions
diff --git a/packages/tinyscheme/.mtn2git_empty b/packages/tinyscheme/.mtn2git_empty
new file mode 100644
index 0000000000..e69de29bb2
--- /dev/null
+++ b/packages/tinyscheme/.mtn2git_empty
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}"