2006-07-26 03:03:45 +00:00
|
|
|
#
|
2010-05-16 14:22:12 +00:00
|
|
|
# Copyright (C) 2006-2010 OpenWrt.org
|
2006-07-26 03:03:45 +00:00
|
|
|
#
|
|
|
|
# This is free software, licensed under the GNU General Public License v2.
|
|
|
|
# See /LICENSE for more information.
|
|
|
|
#
|
|
|
|
|
|
|
|
include $(TOPDIR)/rules.mk
|
|
|
|
|
|
|
|
PKG_NAME:=ez-ipupdate
|
|
|
|
PKG_VERSION:=3.0.11b8
|
2010-05-16 14:22:12 +00:00
|
|
|
PKG_RELEASE:=5
|
2006-07-26 03:03:45 +00:00
|
|
|
|
|
|
|
PKG_SOURCE:=$(PKG_NAME)_$(PKG_VERSION).orig.tar.gz
|
|
|
|
PKG_SOURCE_URL:=http://ftp.debian.org/debian/pool/main/e/ez-ipupdate \
|
|
|
|
http://ftp.de.debian.org/debian/pool/main/e/ez-ipupdate
|
|
|
|
PKG_MD5SUM:=000211add4c4845ffa4211841bff4fb0
|
|
|
|
|
|
|
|
include $(INCLUDE_DIR)/package.mk
|
|
|
|
|
|
|
|
define Package/ez-ipupdate
|
|
|
|
SECTION:=net
|
|
|
|
CATEGORY:=Network
|
|
|
|
TITLE:=Dynamic DNS services client
|
|
|
|
URL:=http://ez-ipupdate.com/
|
|
|
|
endef
|
|
|
|
|
2006-10-28 22:43:08 +00:00
|
|
|
# uses GNU configure
|
2006-07-26 03:03:45 +00:00
|
|
|
|
|
|
|
define Build/Compile
|
|
|
|
$(MAKE) -C $(PKG_BUILD_DIR)
|
|
|
|
endef
|
|
|
|
|
|
|
|
define Package/ez-ipupdate/install
|
2006-11-23 00:29:07 +00:00
|
|
|
$(INSTALL_DIR) $(1)/usr/sbin
|
|
|
|
$(INSTALL_BIN) $(PKG_BUILD_DIR)/ez-ipupdate $(1)/usr/sbin/
|
2008-06-05 09:45:34 +00:00
|
|
|
$(INSTALL_DIR) $(1)/etc/config/
|
|
|
|
$(INSTALL_CONF) ./files/ez-ipupdate.config $(1)/etc/config/ddns
|
2006-11-23 00:29:07 +00:00
|
|
|
$(INSTALL_DIR) $(1)/etc/hotplug.d/iface
|
2007-06-28 21:13:40 +00:00
|
|
|
$(INSTALL_BIN) ./files/ez-ipupdate.hotplug $(1)/etc/hotplug.d/iface/30-ez-ipupdate
|
2006-07-26 03:03:45 +00:00
|
|
|
endef
|
|
|
|
|
|
|
|
$(eval $(call BuildPackage,ez-ipupdate))
|