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.

40 lines
1.2 KiB

  1. include $(TOPDIR)/rules.mk
  2. PKG_NAME:=https-dns-proxy
  3. PKG_VERSION:=2020-04-09
  4. PKG_RELEASE=2
  5. PKG_SOURCE_PROTO:=git
  6. PKG_SOURCE_URL:=https://github.com/aarond10/https_dns_proxy
  7. PKG_SOURCE_DATE:=2020-04-09
  8. PKG_SOURCE_VERSION:=40647ce94c62a47e9d53efae8018fb3142e277b9
  9. PKG_MIRROR_HASH:=4a8052b8bd482a17b769bcd4ee2620368f8c91955c5e976088be8d2ab002dde6
  10. PKG_MAINTAINER:=Stan Grishin <stangri@melmac.net>
  11. PKG_LICENSE:=MIT
  12. PKG_LICENSE_FILES:=LICENSE
  13. include $(INCLUDE_DIR)/package.mk
  14. include $(INCLUDE_DIR)/cmake.mk
  15. CMAKE_OPTIONS += -DCLANG_TIDY_EXE=
  16. define Package/https-dns-proxy
  17. SECTION:=net
  18. CATEGORY:=Network
  19. TITLE:=DNS Over HTTPS Proxy
  20. DEPENDS:=+libcares +libcurl +libev +ca-bundle
  21. CONFLICTS:=https_dns_proxy
  22. endef
  23. define Package/https-dns-proxy/conffiles
  24. /etc/config/https-dns-proxy
  25. endef
  26. define Package/https-dns-proxy/install
  27. $(INSTALL_DIR) $(1)/usr/sbin $(1)/etc/init.d ${1}/etc/config
  28. $(INSTALL_BIN) $(PKG_BUILD_DIR)/https_dns_proxy $(1)/usr/sbin/https-dns-proxy
  29. $(INSTALL_BIN) ./files/https-dns-proxy.init $(1)/etc/init.d/https-dns-proxy
  30. $(INSTALL_CONF) ./files/https-dns-proxy.config $(1)/etc/config/https-dns-proxy
  31. endef
  32. $(eval $(call BuildPackage,https-dns-proxy))