Browse Source

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>
Sven Neumann 14 years ago
parent
commit
cf0114a418
3 changed files with 18 additions and 0 deletions
  1. 1 0
      package/Config.in
  2. 7 0
      package/orc/Config.in
  3. 10 0
      package/orc/orc.mk

+ 1 - 0
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
 

+ 7 - 0
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/

+ 10 - 0
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))