diff options
author | Felix Fietkau <nbd@openwrt.org> | 2009-10-27 21:18:58 +0000 |
---|---|---|
committer | Felix Fietkau <nbd@openwrt.org> | 2009-10-27 21:18:58 +0000 |
commit | 1d38751d6bdb3dcc752ba638311f33f8b2458ef3 (patch) | |
tree | ec73771da9a2fb4e14d51c15a7a7ce0f8cb5fb75 /package/lua/Makefile | |
parent | 479c497f58a49b93f1cf7d021b96f607f8e796d6 (diff) | |
download | upstream-1d38751d6bdb3dcc752ba638311f33f8b2458ef3.tar.gz upstream-1d38751d6bdb3dcc752ba638311f33f8b2458ef3.tar.bz2 upstream-1d38751d6bdb3dcc752ba638311f33f8b2458ef3.zip |
lua: re-enable host builds with some more fixes
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@18189 3c298f89-4303-0410-b956-a3cf2f4a3e73
Diffstat (limited to 'package/lua/Makefile')
-rw-r--r-- | package/lua/Makefile | 26 |
1 files changed, 26 insertions, 0 deletions
diff --git a/package/lua/Makefile b/package/lua/Makefile index 4589cfed2c..e314341d94 100644 --- a/package/lua/Makefile +++ b/package/lua/Makefile @@ -18,7 +18,10 @@ PKG_SOURCE_URL:=http://www.lua.org/ftp/ \ http://www.tecgraf.puc-rio.br/lua/ftp/ PKG_MD5SUM:=d0870f2de55d59c1c8419f36e8fac150 +HOST_PATCH_DIR := ./patches-host + include $(INCLUDE_DIR)/package.mk +include $(INCLUDE_DIR)/host-build.mk define Package/lua/Default SUBMENU:=Lua @@ -108,6 +111,27 @@ define Build/Compile install endef +define Build/Configure + $(SED) 's,"/usr/local/","$(STAGING_DIR_HOST)/",' $(HOST_BUILD_DIR)/src/luaconf.h +endef + +LUA_OS.Darwin:=macosx +LUA_OS.FreeBSD:=freebsd +LUA_OS:=$(LUA_OS.$(HOST_OS)) +LUA_OS?=linux + +define Host/Compile + $(MAKE) -C $(HOST_BUILD_DIR) \ + CC="$(HOSTCC) -std=gnu99" \ + $(LUA_OS) +endef + +define Host/Install + $(MAKE) -C $(HOST_BUILD_DIR) \ + INSTALL_TOP="$(STAGING_DIR_HOST)" \ + install +endef + define Build/InstallDev $(INSTALL_DIR) $(1)/usr/include $(CP) $(PKG_INSTALL_DIR)/usr/include/lua{,lib,conf}.h $(1)/usr/include/ @@ -145,3 +169,5 @@ $(eval $(call BuildPackage,liblua)) $(eval $(call BuildPackage,lua)) $(eval $(call BuildPackage,luac)) $(eval $(call BuildPackage,lua-examples)) +$(eval $(call HostBuild)) + |