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.

64 lines
1.8 KiB

  1. #
  2. # Author: Tibor Dudlák
  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:=tang
  9. PKG_VERSION:=10
  10. PKG_RELEASE:=$(AUTORELEASE)
  11. PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).tar.xz
  12. PKG_SOURCE_URL:=https://github.com/latchset/$(PKG_NAME)/releases/download/v$(PKG_VERSION)/
  13. PKG_HASH:=082f17e031708ab5e2f88c9b767d228bcf92a0d089fdb164d4ae93845cbd2a48
  14. PKG_MAINTAINER:=Tibor Dudlák <tibor.dudlak@gmail.com>
  15. PKG_LICENSE:=GPL-3.0-or-later
  16. PKG_LICENSE_FILES:=COPYING
  17. PKG_INSTALL:=1
  18. PKG_BUILD_DEPENDS:=meson/host
  19. include $(INCLUDE_DIR)/package.mk
  20. include ../../devel/meson/meson.mk
  21. define Package/tang
  22. SECTION:=utils
  23. TITLE:=tang v$(PKG_VERSION) - daemon for binding data to the presence of a third party
  24. DEPENDS:=+libhttp-parser +xinetd +jose +bash
  25. URL:=https://github.com/latchset/tang
  26. endef
  27. define Package/tang/description
  28. Tang is a small daemon for binding data to the presence of a third party.
  29. endef
  30. define Package/tang/conffiles
  31. /etc/xinetd.d/tangdx
  32. /usr/share/tang/db/
  33. endef
  34. define Package/tang/install
  35. $(INSTALL_DIR) $(1)/usr/libexec
  36. $(INSTALL_DIR) $(1)/etc/xinetd.d/
  37. $(INSTALL_BIN) $(PKG_INSTALL_DIR)/usr/libexec/tangd* $(1)/usr/libexec/
  38. $(INSTALL_BIN) ./files/tangdw $(1)/usr/libexec/
  39. $(CP) ./files/tangdx $(1)/etc/xinetd.d/
  40. endef
  41. define Package/tang/postinst
  42. #!/bin/sh
  43. if [ -z "$${IPKG_INSTROOT}" ]; then
  44. mkdir -p /usr/share/tang/db
  45. KEYS=$(find /usr/share/tang/db/ -name "*.jw*" -maxdepth 1 | wc -l)
  46. if [ "${KEYS}" = "0" ]; then # if db is empty generate new key pair
  47. /usr/libexec/tangd-keygen /usr/share/tang/db/
  48. (cat /etc/services | grep -E "tangd.*8888\/tcp") > /dev/null \
  49. || echo -e "tangd\t\t8888/tcp" >> /etc/services
  50. fi
  51. endef
  52. $(eval $(call BuildPackage,tang))