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.

55 lines
1.3 KiB

  1. #
  2. # Copyright (C) 2017-2018 Daniel Engberg <daniel.engberg.lists@pyret.net>
  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:=inadyn
  9. PKG_VERSION:=2.7
  10. PKG_RELEASE:=1
  11. PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).tar.xz
  12. PKG_SOURCE_URL:=https://github.com/troglobit/inadyn/releases/download/v$(PKG_VERSION)
  13. PKG_HASH:=eb03bc9d9c09dfbbc651b43a2eb5a967d0454a8293576df23784710dac50c6a4
  14. PKG_MAINTAINER:=
  15. PKG_LICENSE:=GPL-2.0-or-later
  16. PKG_LICENSE_FILES:=COPYING
  17. PKG_INSTALL:=1
  18. PKG_BUILD_PARALLEL:=1
  19. include $(INCLUDE_DIR)/package.mk
  20. define Package/inadyn
  21. SECTION:=net
  22. CATEGORY:=Network
  23. DEPENDS:=+confuse +libopenssl +ca-certificates
  24. TITLE:=A Dynamic DNS client with SSL/TLS support
  25. URL:=http://troglobit.com/project/inadyn/
  26. SUBMENU:=IP Addresses and Names
  27. endef
  28. define Package/inadyn/description
  29. Inadyn is a small and simple Dynamic DNS, DDNS, client with HTTPS support
  30. endef
  31. define Package/inadyn/conffiles
  32. /etc/inadyn.conf
  33. endef
  34. CONFIGURE_ARGS += \
  35. --enable-shared \
  36. --disable-static \
  37. --enable-openssl \
  38. --with-pic
  39. define Package/inadyn/install
  40. $(INSTALL_DIR) $(1)/usr/sbin
  41. $(INSTALL_BIN) $(PKG_INSTALL_DIR)/usr/sbin/inadyn $(1)/usr/sbin/
  42. endef
  43. $(eval $(call BuildPackage,inadyn))