summaryrefslogtreecommitdiffstats
path: root/tools/lua/Makefile
diff options
context:
space:
mode:
authorcyrus <cyrus@3c298f89-4303-0410-b956-a3cf2f4a3e73>2008-05-30 18:38:14 +0000
committercyrus <cyrus@3c298f89-4303-0410-b956-a3cf2f4a3e73>2008-05-30 18:38:14 +0000
commitdda84a264bcecb5eba4e3a05beedb00b14d0dd13 (patch)
tree6da3edc7d8772646e48dfcfb5387706ebf7adf98 /tools/lua/Makefile
parentb9fe0f9f374ce7584517be6d5543f5ab97d4ec0c (diff)
Added lua (lua host bytecode-compiler) to tools/
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@11304 3c298f89-4303-0410-b956-a3cf2f4a3e73
Diffstat (limited to 'tools/lua/Makefile')
-rw-r--r--tools/lua/Makefile42
1 files changed, 42 insertions, 0 deletions
diff --git a/tools/lua/Makefile b/tools/lua/Makefile
new file mode 100644
index 000000000..7b1f28faf
--- /dev/null
+++ b/tools/lua/Makefile
@@ -0,0 +1,42 @@
+#
+# Copyright (C) 2006 OpenWrt.org
+#
+# This is free software, licensed under the GNU General Public License v2.
+# See /LICENSE for more information.
+#
+# $Id$
+
+include $(TOPDIR)/rules.mk
+
+PKG_NAME:=lua
+PKG_VERSION:=5.1.3
+
+PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).tar.gz
+PKG_SOURCE_URL:=http://www.lua.org/ftp/ \
+ http://ftp.gwdg.de/pub/languages/lua/ \
+ http://mirrors.dotsrc.org/lua/ \
+ http://www.tecgraf.puc-rio.br/lua/ftp/
+PKG_MD5SUM:=a70a8dfaa150e047866dc01a46272599
+
+include $(INCLUDE_DIR)/host-build.mk
+
+define Build/Configure
+endef
+
+TARGET_CFLAGS += -DLUA_USE_LINUX
+
+define Build/Compile
+ $(MAKE) -C $(PKG_BUILD_DIR)/src luac-host
+endef
+
+define Build/Install
+ $(INSTALL_BIN) $(PKG_BUILD_DIR)/src/luac-host $(STAGING_DIR_HOST)/bin/luac
+endef
+
+define Build/Clean
+ $(MAKE) -C $(PKG_BUILD_DIR)/src clean
+ rm -f $(PKG_BUILD_DIR)/src/luac-host
+ $(call Build/Clean/Default)
+endef
+
+$(eval $(call HostBuild))