X-Git-Url: https://git.archive.openwrt.org/?p=openwrt.git;a=blobdiff_plain;f=package%2Flua%2FMakefile;h=fca7747cd52ad556e0ab9f210158f8984bca7685;hp=13eb4a518a88e87d2d4fe2c65f7224117616d49b;hb=4d84131c0def3a39c78318441a5eebe375fbc83f;hpb=796a9d1091884a07817e5c140d0ff6a0b8c76235 diff --git a/package/lua/Makefile b/package/lua/Makefile index 13eb4a518a..fca7747cd5 100644 --- a/package/lua/Makefile +++ b/package/lua/Makefile @@ -1,5 +1,5 @@ # -# Copyright (C) 2006-2009 OpenWrt.org +# Copyright (C) 2006-2012 OpenWrt.org # # This is free software, licensed under the GNU General Public License v2. # See /LICENSE for more information. @@ -8,28 +8,29 @@ include $(TOPDIR)/rules.mk PKG_NAME:=lua -PKG_VERSION:=5.1.4 -PKG_RELEASE:=4 +PKG_VERSION:=5.1.5 +PKG_RELEASE:=1 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:=d0870f2de55d59c1c8419f36e8fac150 +PKG_MD5SUM:=2e115fe26e435e33b0d5c022e4490567 +PKG_BUILD_PARALLEL:=1 -HOST_PATCH_DIR=./patches-host -PKG_BUILD_DEPENDS:=lua/host zlib +HOST_PATCH_DIR := ./patches-host -include $(INCLUDE_DIR)/host-build.mk include $(INCLUDE_DIR)/package.mk +include $(INCLUDE_DIR)/host-build.mk define Package/lua/Default - SUBMENU:=LUA + SUBMENU:=Lua SECTION:=lang CATEGORY:=Languages - TITLE:=LUA programming language + TITLE:=Lua programming language URL:=http://www.lua.org/ + MAINTAINER:=Jo-Philipp Wich endef define Package/lua/Default/description @@ -48,7 +49,7 @@ endef define Package/liblua/description $(call Package/lua/Default/description) - This package contains the LUA shared libraries, needed by other programs. + This package contains the Lua shared libraries, needed by other programs. endef define Package/lua @@ -59,7 +60,7 @@ endef define Package/lua/description $(call Package/lua/Default/description) - This package contains the LUA language interpreter. + This package contains the Lua language interpreter. endef define Package/luac @@ -70,7 +71,7 @@ endef define Package/luac/description $(call Package/lua/Default/description) - This package contains the LUA language compiler. + This package contains the Lua language compiler. endef define Package/lua-examples @@ -81,25 +82,13 @@ endef define Package/lua-examples/description $(call Package/lua/Default/description) - This package contains LUA language examples. + This package contains Lua language examples. endef -# Host build -define Host/Configure - +define Build/Configure endef -define Host/Compile - $(MAKE) -C $(HOST_BUILD_DIR)/src luac-host -endef - -define Host/Install - $(INSTALL_BIN) $(HOST_BUILD_DIR)/src/luac-host $(STAGING_DIR_HOST)/bin/luac -endef - -# Target build - -TARGET_CFLAGS += -DLUA_USE_LINUX $(FPIC) +TARGET_CFLAGS += -DLUA_USE_LINUX $(FPIC) -std=gnu99 ifneq ($(CONFIG_USE_EGLIBC),) ifeq ($(CONFIG_EGLIBC_OPTION_EGLIBC_UTMP),) @@ -107,10 +96,8 @@ ifneq ($(CONFIG_USE_EGLIBC),) endif endif -Build/Configure=$(Host/Configure) - define Build/Compile - $(MAKE) -C $(PKG_BUILD_DIR) \ + $(MAKE) $(PKG_JOBS) -C $(PKG_BUILD_DIR) \ CC="$(TARGET_CROSS)gcc" \ AR="$(TARGET_CROSS)ar rcu" \ RANLIB="$(TARGET_CROSS)ranlib" \ @@ -126,14 +113,42 @@ define Build/Compile install endef +define Host/Configure + $(SED) 's,"/usr/local/","$(STAGING_DIR_HOST)/",' $(HOST_BUILD_DIR)/src/luaconf.h +endef + +ifeq ($(HOST_OS),Darwin) + LUA_OS:=macosx +else + ifeq ($(HOST_OS),FreeBSD) + LUA_OS:=freebsd + else + LUA_OS:=linux + endif +endif + +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 - mkdir -p $(1)/usr/include + $(INSTALL_DIR) $(1)/usr/include $(CP) $(PKG_INSTALL_DIR)/usr/include/lua{,lib,conf}.h $(1)/usr/include/ $(CP) $(PKG_INSTALL_DIR)/usr/include/lauxlib.h $(1)/usr/include/ $(CP) $(PKG_INSTALL_DIR)/usr/include/lnum_config.h $(1)/usr/include/ - mkdir -p $(1)/usr/lib + $(INSTALL_DIR) $(1)/usr/lib $(CP) $(PKG_INSTALL_DIR)/usr/lib/liblua.{a,so*} $(1)/usr/lib/ ln -sf liblua.so.$(PKG_VERSION) $(1)/usr/lib/liblualib.so + $(INSTALL_DIR) $(1)/usr/lib/pkgconfig + $(CP) $(PKG_BUILD_DIR)/etc/lua.pc $(1)/usr/lib/pkgconfig/ endef define Package/liblua/install @@ -157,8 +172,9 @@ define Package/lua-examples/install $(1)/usr/share/lua/examples/ endef -$(eval $(call HostBuild)) $(eval $(call BuildPackage,liblua)) $(eval $(call BuildPackage,lua)) $(eval $(call BuildPackage,luac)) $(eval $(call BuildPackage,lua-examples)) +$(eval $(call HostBuild)) +