branch Attitude Adjustment packages
[12.09/packages.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:=21
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         SUBMENU:=IP Addresses and Names
15         TITLE:=Dynamic DNS Scripts
16         PKGARCH:=all
17 endef
18
19 define Package/ddns-scripts/description
20         A highly configurable set of scripts for doing
21         dynamic dns updates
22 endef
23
24 define Build/Prepare
25 endef
26
27 define Build/Configure
28 endef
29
30 define Build/Compile
31 endef
32
33 define Package/ddns-scripts/conffiles
34 /etc/config/ddns
35 endef
36
37 define Package/ddns-scripts/install
38         $(INSTALL_DIR) $(1)
39         $(CP) ./files/* $(1)/
40 endef
41
42 $(eval $(call BuildPackage,ddns-scripts))