ecfebbb652dc2147e2a52e3cc2c9814389e6c73e
[openwrt/svn-archive/archive.git] / net / ddns-scripts / Makefile
1 include $(TOPDIR)/rules.mk
2
3 PKG_NAME:=ddns-scripts
4 PKG_VERSION:=1.0.0
5 PKG_RELEASE:=1
6
7 PKG_BUILD_DIR := $(BUILD_DIR)/$(PKG_NAME)
8
9 include $(INCLUDE_DIR)/package.mk
10
11 define Package/ddns-scripts
12 SECTION:=net
13 CATEGORY:=Network
14 TITLE:=Dynamic DNS Scripts
15 endef
16
17 define Package/ddns-scripts/description
18 A highly configurable set of scripts for doing
19 dynamic dns updates
20 endef
21
22 define Build/Prepare
23 endef
24
25 define Build/Configure
26 endef
27
28 define Build/Compile
29 endef
30
31 define Package/ddns-scripts/install
32 $(INSTALL_DIR) $(1)
33 $(CP) ./files/* $(1)/
34 endef
35
36 $(eval $(call BuildPackage,ddns-scripts))