1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162 |
- #
- # Copyright (C) 2009-2013 OpenWrt.org
- #
- # This is free software, licensed under the GNU General Public License v2.
- # See /LICENSE for more information.
- #
- include $(TOPDIR)/rules.mk
- PKG_NAME:=lua-copas
- PKG_VERSION:=2.0.0
- PKG_RELEASE:=1
- PKG_MAINTAINER:=Dirk Chang <dirk@kooiot.com>
- PKG_LICENSE:=MIT
- PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).tar.gz
- PKG_SOURCE_URL:=https://github.com/keplerproject/copas.git
- PKG_SOURCE_PROTO:=git
- PKG_SOURCE_VERSION:=f39a80add9f7c010ac979297652bbaaea0360a27
- PKG_SOURCE_SUBDIR:=$(PKG_NAME)-$(PKG_VERSION)
- PKG_INSTALL:=1
- include $(INCLUDE_DIR)/package.mk
- define Package/lua-copas
- SUBMENU:=Lua
- SECTION:=lang
- CATEGORY:=Languages
- TITLE:=Lua-Copas
- URL:=https://github.com/keplerproject/copas
- DEPENDS:=+lua
- endef
- define Package/lua-copas/description
- Copas is a dispatcher based on coroutines that can be used by TCP/IP servers.
- endef
- define Build/Configure
- endef
- define Build/Compile
- $(MAKE) -C $(PKG_BUILD_DIR) \
- T="$(BUILD_VARIANT)" \
- PREFIX="$(PKG_INSTALL_DIR)/usr" \
- install
- endef
- # add make variable overrides here
- MAKE_FLAGS +=
- define Package/lua-copas/install
- $(INSTALL_DIR) $(1)/usr/lib/lua
- $(INSTALL_DIR) $(1)/usr/lib/lua/copas
- $(INSTALL_DATA) $(PKG_BUILD_DIR)/src/copas.lua $(1)/usr/lib/lua
- $(INSTALL_DATA) $(PKG_BUILD_DIR)/src/copas/ftp.lua $(1)/usr/lib/lua/copas
- $(INSTALL_DATA) $(PKG_BUILD_DIR)/src/copas/smtp.lua $(1)/usr/lib/lua/copas
- $(INSTALL_DATA) $(PKG_BUILD_DIR)/src/copas/http.lua $(1)/usr/lib/lua/copas
- $(INSTALL_DATA) $(PKG_BUILD_DIR)/src/copas/limit.lua $(1)/usr/lib/lua/copas
- endef
- $(eval $(call BuildPackage,lua-copas))
|