37 lines
591 B
Makefile
37 lines
591 B
Makefile
|
include $(TOPDIR)/rules.mk
|
||
|
|
||
|
PKG_NAME:=ddns-scripts
|
||
|
PKG_VERSION:=1.0.0
|
||
|
PKG_RELEASE:=1
|
||
|
|
||
|
PKG_BUILD_DIR := $(BUILD_DIR)/$(PKG_NAME)
|
||
|
|
||
|
include $(INCLUDE_DIR)/package.mk
|
||
|
|
||
|
define Package/ddns-scripts
|
||
|
SECTION:=net
|
||
|
CATEGORY:=Network
|
||
|
TITLE:=Dynamic DNS Scripts
|
||
|
endef
|
||
|
|
||
|
define Package/ddns-scripts/description
|
||
|
A highly configurable set of scripts for doing
|
||
|
dynamic dns updates
|
||
|
endef
|
||
|
|
||
|
define Build/Prepare
|
||
|
endef
|
||
|
|
||
|
define Build/Configure
|
||
|
endef
|
||
|
|
||
|
define Build/Compile
|
||
|
endef
|
||
|
|
||
|
define Package/ddns-scripts/install
|
||
|
$(INSTALL_DIR) $(1)
|
||
|
$(CP) ./files/* $(1)/
|
||
|
endef
|
||
|
|
||
|
$(eval $(call BuildPackage,ddns-scripts))
|