From 6d2e44995a9210512a3927f319987f0f983ebfcd Mon Sep 17 00:00:00 2001 From: Steven Barth Date: Sat, 24 May 2008 17:40:37 +0000 Subject: [PATCH] [packages] Added posix library for Lua: lang/luaposix SVN-Revision: 11262 --- lang/luaposix/Makefile | 51 ++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 51 insertions(+) create mode 100644 lang/luaposix/Makefile diff --git a/lang/luaposix/Makefile b/lang/luaposix/Makefile new file mode 100644 index 0000000000..bec0b11fb0 --- /dev/null +++ b/lang/luaposix/Makefile @@ -0,0 +1,51 @@ +# Copyright (C) 2008 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:=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)) -- 2.30.2