summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorSven Neumann2011-07-14 09:32:39 +0200
committerPeter Korsgaard2011-07-24 23:44:01 +0200
commitcf0114a41827ea80d4f70b3024a58f6eece4774c (patch)
tree506f81a65a6b6493f3188329a42c2978af2ba43d
parentgst-plugins-ugly: fix dependencies for mad MP3 decoder plug-in (diff)
downloadbuildroot-cf0114a41827ea80d4f70b3024a58f6eece4774c.tar.gz
buildroot-cf0114a41827ea80d4f70b3024a58f6eece4774c.tar.xz
buildroot-cf0114a41827ea80d4f70b3024a58f6eece4774c.zip
orc: new package
Orc - the Oil Runtime Compiler - is the successor of liboil. There's a runtime library that is installed in staging and target and there's a host version that can be built if orcc, the ORC compiler is needed at build time. [Peter: minor tweaks] Signed-off-by: Sven Neumann <s.neumann@raumfeld.com> Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
-rw-r--r--package/Config.in1
-rw-r--r--package/orc/Config.in7
-rw-r--r--package/orc/orc.mk10
3 files changed, 18 insertions, 0 deletions
diff --git a/package/Config.in b/package/Config.in
index b9bd52992..28e55700c 100644
--- a/package/Config.in
+++ b/package/Config.in
@@ -346,6 +346,7 @@ source "package/libglib2/Config.in"
source "package/libnspr/Config.in"
source "package/liboil/Config.in"
source "package/libsigc/Config.in"
+source "package/orc/Config.in"
source "package/startup-notification/Config.in"
endmenu
diff --git a/package/orc/Config.in b/package/orc/Config.in
new file mode 100644
index 000000000..1de0f235f
--- /dev/null
+++ b/package/orc/Config.in
@@ -0,0 +1,7 @@
+config BR2_PACKAGE_ORC
+ bool "orc"
+ help
+ Orc is a library and set of tools for compiling and executing
+ very simple programs that operate on arrays of data.
+
+ http://code.entropywave.com/projects/orc/
diff --git a/package/orc/orc.mk b/package/orc/orc.mk
new file mode 100644
index 000000000..f89d5cf93
--- /dev/null
+++ b/package/orc/orc.mk
@@ -0,0 +1,10 @@
+#############################################################
+#
+# orc
+#
+#############################################################
+ORC_VERSION = 0.4.14
+ORC_SITE = http://code.entropywave.com/download/orc/
+ORC_INSTALL_STAGING = YES
+
+$(eval $(call AUTOTARGETS,package,orc))