mirror of
https://github.com/coolsnowwolf/lede.git
synced 2025-04-15 18:03:30 +00:00
79 lines
2.6 KiB
Makefile
79 lines
2.6 KiB
Makefile
include $(TOPDIR)/rules.mk
|
|
|
|
PKG_NAME:=ddns-scripts_dnspod
|
|
PKG_VERSION:=1.0.2
|
|
PKG_RELEASE:=1
|
|
|
|
PKG_LICENSE:=GPLv2
|
|
PKG_MAINTAINER:=Small_5
|
|
|
|
PKG_BUILD_PARALLEL:=1
|
|
|
|
include $(INCLUDE_DIR)/package.mk
|
|
|
|
define Package/ddns-scripts_dnspod
|
|
SECTION:=net
|
|
CATEGORY:=Network
|
|
SUBMENU:=IP Addresses and Names
|
|
TITLE:=DDNS extension for Dnspod.com/Dnspod.cn
|
|
PKGARCH:=all
|
|
DEPENDS:=+ddns-scripts +wget-ssl +ca-bundle
|
|
endef
|
|
|
|
define Package/ddns-scripts_dnspod/description
|
|
Dynamic DNS Client scripts extension for Dnspod.com/Dnspod.cn
|
|
endef
|
|
|
|
define Build/Configure
|
|
endef
|
|
|
|
define Build/Compile
|
|
endef
|
|
|
|
define Package/ddns-scripts_dnspod/preinst
|
|
#!/bin/sh
|
|
# if NOT run buildroot then stop service
|
|
[ -z "$${IPKG_INSTROOT}" ] && /etc/init.d/ddns stop >/dev/null 2>&1
|
|
exit 0 # suppress errors
|
|
endef
|
|
|
|
define Package/ddns-scripts_dnspod/install
|
|
$(INSTALL_DIR) $(1)/usr/lib/ddns $(1)/usr/share/ddns/default
|
|
$(INSTALL_BIN) $(CURDIR)/*.sh $(1)/usr/lib/ddns
|
|
$(INSTALL_DATA) $(CURDIR)/*.json $(1)/usr/share/ddns/default
|
|
endef
|
|
|
|
define Package/ddns-scripts_dnspod/postinst
|
|
#!/bin/sh
|
|
# remove old services file entries
|
|
/bin/sed -i '/dnspod\.com/d' $${IPKG_INSTROOT}/etc/ddns/services >/dev/null 2>&1
|
|
/bin/sed -i '/dnspod\.cn/d' $${IPKG_INSTROOT}/etc/ddns/services >/dev/null 2>&1
|
|
/bin/sed -i '/dnspod\.com/d' $${IPKG_INSTROOT}/etc/ddns/services_ipv6 >/dev/null 2>&1
|
|
/bin/sed -i '/dnspod\.cn/d' $${IPKG_INSTROOT}/etc/ddns/services_ipv6 >/dev/null 2>&1
|
|
# and create new
|
|
printf "%s\\t\\t%s\\n" '"dnspod.com"' '"update_dnspod_com.sh"' >> $${IPKG_INSTROOT}/etc/ddns/services
|
|
printf "%s\\t\\t%s\\n" '"dnspod.cn"' '"update_dnspod_cn.sh"' >> $${IPKG_INSTROOT}/etc/ddns/services
|
|
printf "%s\\t\\t%s\\n" '"dnspod.com"' '"update_dnspod_com.sh"' >> $${IPKG_INSTROOT}/etc/ddns/services_ipv6
|
|
printf "%s\\t\\t%s\\n" '"dnspod.cn"' '"update_dnspod_cn.sh"' >> $${IPKG_INSTROOT}/etc/ddns/services_ipv6
|
|
# on real system restart service if enabled
|
|
[ -z "$${IPKG_INSTROOT}" ] && {
|
|
/etc/init.d/ddns enabled && \
|
|
/etc/init.d/ddns start >/dev/null 2>&1
|
|
}
|
|
exit 0 # suppress errors
|
|
endef
|
|
|
|
define Package/ddns-scripts_dnspod/prerm
|
|
#!/bin/sh
|
|
# if NOT run buildroot then stop service
|
|
[ -z "$${IPKG_INSTROOT}" ] && /etc/init.d/ddns stop >/dev/null 2>&1
|
|
# remove services file entries
|
|
/bin/sed -i '/dnspod\.com/d' $${IPKG_INSTROOT}/etc/ddns/services >/dev/null 2>&1
|
|
/bin/sed -i '/dnspod\.cn/d' $${IPKG_INSTROOT}/etc/ddns/services >/dev/null 2>&1
|
|
/bin/sed -i '/dnspod\.com/d' $${IPKG_INSTROOT}/etc/ddns/services_ipv6 >/dev/null 2>&1
|
|
/bin/sed -i '/dnspod\.cn/d' $${IPKG_INSTROOT}/etc/ddns/services_ipv6 >/dev/null 2>&1
|
|
exit 0 # suppress errors
|
|
endef
|
|
|
|
$(eval $(call BuildPackage,ddns-scripts_dnspod))
|