You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

53 lines
1.3 KiB

  1. #
  2. # Copyright (C) 2011 OpenWrt.org
  3. #
  4. # This is free software, licensed under the GNU General Public License v2.
  5. # See /LICENSE for more information.
  6. #
  7. include $(TOPDIR)/rules.mk
  8. PKG_NAME:=luaposix
  9. PKG_VERSION:=v31
  10. PKG_RELEASE:=1
  11. PKG_SOURCE:=release-$(PKG_VERSION).tar.gz
  12. PKG_SOURCE_URL:=https://github.com/luaposix/luaposix/archive/
  13. PKG_MD5SUM:=a25ff76d54bbbebf7a1f3b20c9806ee3
  14. PKG_BUILD_DIR:=$(BUILD_DIR)/$(PKG_NAME)-release-$(PKG_VERSION)
  15. PKG_REMOVE_FILES:=aclocal.m4
  16. PKG_FIXUP:=autoreconf
  17. include $(INCLUDE_DIR)/package.mk
  18. define Package/luaposix
  19. SUBMENU:=Lua
  20. SECTION:=lang
  21. CATEGORY:=Languages
  22. TITLE:=luaposix
  23. URL:=http://luaforge.net/projects/luaposix/
  24. DEPENDS:=+lua +librt +luabitop
  25. PKG_BUILD_DEPENDS:=+lua/host
  26. endef
  27. define Package/luaposix/description
  28. luaposix is a general POSIX library for Lua providing access
  29. to various low level libc functions.
  30. endef
  31. TARGET_CFLAGS += -DLUA_USE_LINUX $(FPIC) -std=gnu99
  32. ifneq ($(CONFIG_USE_EGLIBC),)
  33. ifeq ($(CONFIG_EGLIBC_OPTION_EGLIBC_UTMP),)
  34. TARGET_CFLAGS += -DNO_GETLOGIN
  35. endif
  36. endif
  37. define Package/luaposix/install
  38. $(INSTALL_DIR) $(1)/usr/lib/lua
  39. $(INSTALL_BIN) $(PKG_BUILD_DIR)/ext/posix/.libs/posix_c.so $(1)/usr/lib/lua
  40. $(INSTALL_BIN) $(PKG_BUILD_DIR)/lib/posix.lua $(1)/usr/lib/lua
  41. endef
  42. $(eval $(call BuildPackage,luaposix))