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.

43 lines
1.1 KiB

  1. #
  2. # Copyright (C) 2013-2015 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:=lua-mosquitto
  9. PKG_VERSION:=0.4.1
  10. PKG_RELEASE:=1
  11. PKG_LICENSE:=MIT
  12. PKG_LICENSE_FILES:=LICENSE
  13. PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).tar.xz
  14. PKG_MIRROR_HASH:=d6bc828ea05f9a1ff3241f575a6ce699e577f9b79277182699e8fa03ac094ac9
  15. PKG_SOURCE_PROTO:=git
  16. PKG_SOURCE_SUBDIR:=$(PKG_NAME)-$(PKG_VERSION)
  17. PKG_SOURCE_URL:=https://github.com/flukso/lua-mosquitto.git
  18. PKG_SOURCE_VERSION:=v$(PKG_VERSION)
  19. include $(INCLUDE_DIR)/package.mk
  20. define Package/lua-mosquitto
  21. SUBMENU:=Lua
  22. SECTION:=lang
  23. CATEGORY:=Languages
  24. TITLE:=Lua-mosquitto
  25. DEPENDS:=+libmosquitto +lua
  26. MAINTAINER:=Karl Palsson <karlp@etactica.com>
  27. endef
  28. define Package/lua-mosquitto/description
  29. Lua bindings to libmosquitto
  30. endef
  31. define Package/lua-mosquitto/install
  32. $(INSTALL_DIR) $(1)/usr/lib/lua
  33. $(INSTALL_BIN) $(PKG_BUILD_DIR)/mosquitto.so $(1)/usr/lib/lua
  34. endef
  35. $(eval $(call BuildPackage,lua-mosquitto))