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.

35 lines
1.1 KiB

  1. include $(TOPDIR)/rules.mk
  2. PKG_NAME:=https_dns_proxy
  3. PKG_VERSION:=2018-04-23
  4. PKG_RELEASE=3
  5. PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).tar.xz
  6. PKG_MIRROR_HASH:=24b7e4238c37e646f33eee3a374f6b7beb5c167b9c5008cc13b51e5f1f3a44ea
  7. PKG_SOURCE_SUBDIR:=$(PKG_NAME)-$(PKG_VERSION)
  8. PKG_SOURCE_URL:=https://github.com/aarond10/https_dns_proxy/
  9. PKG_SOURCE_PROTO:=git
  10. PKG_SOURCE_VERSION:=bea68401330e611f6e9b75cec84e2dc4e81e52de
  11. PKG_MAINTAINER:=Aaron Drew <aarond10@gmail.com>
  12. PKG_LICENSE:=MIT
  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 server
  20. DEPENDS:=+libcares +libcurl +libev +ca-bundle
  21. endef
  22. define Package/https_dns_proxy/install
  23. $(INSTALL_DIR) $(1)/usr/sbin $(1)/etc/init.d ${1}/etc/config
  24. $(INSTALL_BIN) $(PKG_BUILD_DIR)/https_dns_proxy $(1)/usr/sbin/
  25. $(INSTALL_BIN) ./files/https_dns_proxy.init $(1)/etc/init.d/https_dns_proxy
  26. $(INSTALL_CONF) ./files/https_dns_proxy.config $(1)/etc/config/https_dns_proxy
  27. endef
  28. $(eval $(call BuildPackage,https_dns_proxy))