ddns-scripts_dnspod: cleanup makefile

This commit is contained in:
Beginner 2022-02-13 15:30:23 +08:00 committed by GitHub
parent a73ad80ea1
commit 330392e0a7
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -11,7 +11,7 @@ PKG_BUILD_PARALLEL:=1
include $(INCLUDE_DIR)/package.mk
define Package/$(PKG_NAME)
define Package/ddns-scripts_dnspod
SECTION:=net
CATEGORY:=Network
SUBMENU:=IP Addresses and Names
@ -20,7 +20,7 @@ define Package/$(PKG_NAME)
DEPENDS:=+ddns-scripts +wget-ssl +ca-bundle
endef
define Package/$(PKG_NAME)/description
define Package/ddns-scripts_dnspod/description
Dynamic DNS Client scripts extension for Dnspod.com/Dnspod.cn
endef
@ -31,19 +31,19 @@ define Build/Compile
$(CP) ./*.sh $(PKG_BUILD_DIR)
endef
define Package/$(PKG_NAME)/preinst
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/$(PKG_NAME)/install
define Package/ddns-scripts_dnspod/install
$(INSTALL_DIR) $(1)/usr/lib/ddns
$(INSTALL_BIN) $(PKG_BUILD_DIR)/*.sh $(1)/usr/lib/ddns
endef
define Package/$(PKG_NAME)/postinst
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
@ -63,7 +63,7 @@ define Package/$(PKG_NAME)/postinst
exit 0 # suppress errors
endef
define Package/$(PKG_NAME)/prerm
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
@ -75,4 +75,4 @@ define Package/$(PKG_NAME)/prerm
exit 0 # suppress errors
endef
$(eval $(call BuildPackage,$(PKG_NAME)))
$(eval $(call BuildPackage,ddns-scripts_dnspod))