2021-09-08 15:15:02 +08:00
|
|
|
#
|
|
|
|
# Copyright (C) 2015-2016 OpenWrt.org
|
|
|
|
# Copyright (C) 2020 jjm2473@gmail.com
|
|
|
|
#
|
|
|
|
# This is free software, licensed under the GNU General Public License v3.
|
|
|
|
#
|
|
|
|
|
|
|
|
include $(TOPDIR)/rules.mk
|
|
|
|
|
|
|
|
PKG_ARCH_DDNSTO:=$(ARCH)
|
|
|
|
|
|
|
|
PKG_NAME:=ddnsto
|
|
|
|
PKG_VERSION:=0.3.0
|
|
|
|
PKG_RELEASE:=1
|
|
|
|
PKG_SOURCE:=$(PKG_NAME)-binary-$(PKG_VERSION).tar.gz
|
|
|
|
PKG_SOURCE_URL:=https://firmware.koolshare.cn/binary/ddnsto/
|
2021-09-24 23:37:27 +08:00
|
|
|
PKG_HASH:=skip
|
2021-09-08 15:15:02 +08:00
|
|
|
|
|
|
|
PKG_BUILD_DIR:=$(BUILD_DIR)/$(PKG_NAME)-binary-$(PKG_VERSION)
|
|
|
|
|
|
|
|
PKG_BUILD_PARALLEL:=1
|
|
|
|
PKG_USE_MIPS16:=0
|
|
|
|
|
|
|
|
include $(INCLUDE_DIR)/package.mk
|
|
|
|
|
|
|
|
define Package/$(PKG_NAME)
|
|
|
|
SECTION:=net
|
|
|
|
CATEGORY:=Network
|
|
|
|
SUBMENU:=Web Servers/Proxies
|
|
|
|
TITLE:=DDNS.to - the reverse proxy
|
|
|
|
DEPENDS:=
|
|
|
|
URL:=https://www.ddnsto.com/
|
|
|
|
endef
|
|
|
|
|
|
|
|
define Package/$(PKG_NAME)/description
|
|
|
|
DDNS.to is a reverse proxy
|
|
|
|
endef
|
|
|
|
|
|
|
|
define Package/$(PKG_NAME)/conffiles
|
|
|
|
/etc/config/ddnsto
|
|
|
|
endef
|
|
|
|
|
|
|
|
define Build/Configure
|
|
|
|
endef
|
|
|
|
|
|
|
|
define Build/Compile
|
|
|
|
endef
|
|
|
|
|
|
|
|
define Package/$(PKG_NAME)/install
|
|
|
|
$(INSTALL_DIR) $(1)/usr/sbin $(1)/etc/config $(1)/etc/init.d $(1)/etc/uci-defaults
|
|
|
|
$(INSTALL_BIN) $(PKG_BUILD_DIR)/ddnsto.$(PKG_ARCH_DDNSTO) $(1)/usr/sbin/ddnsto
|
|
|
|
$(INSTALL_CONF) ./files/ddnsto.config $(1)/etc/config/ddnsto
|
|
|
|
$(INSTALL_BIN) ./files/ddnsto.init $(1)/etc/init.d/ddnsto
|
|
|
|
$(INSTALL_BIN) ./files/ddnsto.uci-default $(1)/etc/uci-defaults/ddnsto
|
|
|
|
endef
|
|
|
|
|
|
|
|
$(eval $(call BuildPackage,$(PKG_NAME)))
|