From: Steven Barth Date: Sat, 24 May 2008 18:25:29 +0000 (+0000) Subject: * Removed luaposix package (was committed to OpenWRT) X-Git-Tag: 0.8.0~1000 X-Git-Url: https://git.archive.openwrt.org/?p=project%2Fluci.git;a=commitdiff_plain;h=628701518a5d3efc0d839ff9a3b36bd2a18be607 * Removed luaposix package (was committed to OpenWRT) --- diff --git a/contrib/package/luaposix/Makefile b/contrib/package/luaposix/Makefile deleted file mode 100644 index 9f2871376..000000000 --- a/contrib/package/luaposix/Makefile +++ /dev/null @@ -1,44 +0,0 @@ -include $(TOPDIR)/rules.mk - -PKG_NAME:=luaposix -PKG_VERSION:=5.1.2 -PKG_RELEASE:=1 - -PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).tar.gz -PKG_SOURCE_URL:=http://luaforge.net/frs/download.php/3063 -PKG_MD5SUM:=31deeb4add91f76b3c2d36aae2888d81 - -PKG_BUILD_DIR:=$(BUILD_DIR)/$(PKG_NAME)-$(PKG_VERSION) -PKG_INSTALL_DIR:=$(PKG_BUILD_DIR)/ipkg-install - -include $(INCLUDE_DIR)/package.mk - -define Package/luaposix - SECTION:=lang - CATEGORY:=Languages - SUBMENU:=LUA - TITLE:=Posix library for Lua - URL:=http://luaforge.net/projects/luaposix/ - DEPENDS:=+liblua -endef - -define Build/Configure -endef - -define Build/Compile - $(MAKE) -C $(PKG_BUILD_DIR) \ - CC="$(TARGET_CROSS)gcc" \ - LD="$(TARGET_CROSS)ld" \ - AR="$(TARGET_CROSS)ar rcu" \ - RANLIB="$(TARGET_CROSS)ranlib" \ - INSTALL_ROOT=/usr \ - LUAINC=$(STAGING_DIR)/usr/include - $(STRIP) $(PKG_BUILD_DIR)/posix.so -endef - -define Package/luaposix/install - $(INSTALL_DIR) $(1)/usr/lib/lua - $(CP) $(PKG_BUILD_DIR)/posix.so $(1)/usr/lib/lua -endef - -$(eval $(call BuildPackage,luaposix))