* Removed luaposix package (was committed to OpenWRT)
This commit is contained in:
parent
905696e6f0
commit
628701518a
1 changed files with 0 additions and 44 deletions
|
@ -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))
|
|
Loading…
Reference in a new issue