2010-03-28 16:58:19 +00:00
|
|
|
#
|
2012-05-28 15:04:30 +00:00
|
|
|
# Copyright (C) 2006-2012 OpenWrt.org
|
2010-03-28 16:58:19 +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:=yaddns
|
2011-11-30 12:44:37 +00:00
|
|
|
PKG_VERSION:=1.1
|
2012-05-28 15:04:30 +00:00
|
|
|
PKG_RELEASE:=2
|
2010-03-28 16:58:19 +00:00
|
|
|
|
2011-01-29 02:14:49 +00:00
|
|
|
PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).tar.gz
|
|
|
|
PKG_SOURCE_URL:=http://download.gna.org/yaddns/
|
2011-11-30 12:44:37 +00:00
|
|
|
PKG_MD5SUM:=d8b6ed9bed61dabaa17188d831e352d1
|
2010-03-28 16:58:19 +00:00
|
|
|
|
|
|
|
PKG_INSTALL:=1
|
|
|
|
|
|
|
|
include $(INCLUDE_DIR)/package.mk
|
|
|
|
|
|
|
|
define Package/yaddns
|
|
|
|
SECTION:=net
|
|
|
|
CATEGORY:=Network
|
2015-03-12 19:51:51 +00:00
|
|
|
DEPENDS:=+USE_GLIBC:librt
|
2011-03-12 06:16:47 +00:00
|
|
|
SUBMENU:=IP Addresses and Names
|
2010-03-28 16:58:19 +00:00
|
|
|
TITLE:=Yet Another DDNS client
|
|
|
|
URL:=http://patatrac.info/yaddns
|
|
|
|
endef
|
|
|
|
|
|
|
|
define Package/yaddns/description
|
|
|
|
Yaddns is a small ddns client with multiple ddns server supports (dyndns, ...)
|
|
|
|
and a high flexibility. Yaddns is particularly appropriate for embedded systems.
|
|
|
|
endef
|
|
|
|
|
2011-01-10 16:10:04 +00:00
|
|
|
define Package/yaddns/conffiles
|
|
|
|
/etc/config/ddns
|
|
|
|
endef
|
|
|
|
|
2010-03-28 16:58:19 +00:00
|
|
|
define Package/yaddns/install
|
|
|
|
$(INSTALL_DIR) $(1)/usr/bin
|
|
|
|
$(INSTALL_BIN) $(PKG_INSTALL_DIR)/usr/bin/yaddns $(1)/usr/bin/
|
2011-01-10 16:10:04 +00:00
|
|
|
$(CP) ./files/* $(1)/
|
2010-03-28 16:58:19 +00:00
|
|
|
endef
|
|
|
|
|
|
|
|
$(eval $(call BuildPackage,yaddns))
|