eec5daa5b4
git-svn-id: svn://svn.openwrt.org/openwrt/packages@26068 3c298f89-4303-0410-b956-a3cf2f4a3e73
51 lines
1.3 KiB
Makefile
51 lines
1.3 KiB
Makefile
include $(TOPDIR)/rules.mk
|
|
|
|
PKG_NAME:=ndyndns
|
|
PKG_VERSION:=2.1
|
|
PKG_RELEASE:=1
|
|
|
|
PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).tar.gz
|
|
PKG_SOURCE_URL:=http://ndyndns.googlecode.com/files
|
|
PKG_MD5SUM:=0cdb4dcba5f8c1664f53884b3c2179e9
|
|
|
|
PKG_FIXUP = libtool
|
|
|
|
include $(INCLUDE_DIR)/package.mk
|
|
|
|
MAKE_FLAGS:=PLATFORM=linux
|
|
|
|
define Package/ndyndns
|
|
SECTION:=net
|
|
CATEGORY:=Network
|
|
SUBMENU:=IP Addresses and Names
|
|
TITLE:=DynDNS.com update daemon
|
|
URL:=http://ndyndns.googlecode.com/
|
|
DEPENDS:=+libcurl +libopenssl
|
|
endef
|
|
|
|
define Package/ndyndns/description
|
|
The ndyndns daemon is an update client for DynDNS.com. It
|
|
checks for an IP address change every two minutes, avoids
|
|
unnecessary updates, reports errors, logs to syslog, and
|
|
generally complies with everything required of a proper dyndns
|
|
client.
|
|
endef
|
|
|
|
define Package/ndyndns/conffiles
|
|
/etc/ndyndns/ndyndns.conf.sample
|
|
/etc/default/ndyndns
|
|
endef
|
|
|
|
define Package/ndyndns/install
|
|
$(INSTALL_DIR) $(1)/usr/sbin
|
|
$(INSTALL_BIN) $(PKG_BUILD_DIR)/ndyndns $(1)/usr/sbin
|
|
$(INSTALL_DIR) $(1)/etc/default
|
|
$(INSTALL_BIN) files/$(PKG_NAME).default $(1)/etc/default/$(PKG_NAME)
|
|
$(INSTALL_DIR) $(1)/etc/init.d/
|
|
$(INSTALL_BIN) files/$(PKG_NAME).init $(1)/etc/init.d/$(PKG_NAME)
|
|
$(INSTALL_DIR) $(1)/etc/$(PKG_NAME)
|
|
$(INSTALL_CONF) files/$(PKG_NAME).conf.sample $(1)/etc/$(PKG_NAME)
|
|
endef
|
|
|
|
$(eval $(call BuildPackage,ndyndns))
|