X-Git-Url: http://git.openwrt.org/?p=openwrt%2Fopenwrt.git;a=blobdiff_plain;f=tools%2Flua%2FMakefile;fp=tools%2Flua%2FMakefile;h=7b1f28faf2f26ab039b586bca2b4d9de2edeabbc;hp=0000000000000000000000000000000000000000;hb=13f0dea188f0827caddc3395c23af760bc0ae6bd;hpb=e19528fa6a0bc5a9e9df39ae383f9922345ade0e diff --git a/tools/lua/Makefile b/tools/lua/Makefile new file mode 100644 index 0000000000..7b1f28faf2 --- /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))