2010-03-28 16:58:19 +00:00
|
|
|
#
|
|
|
|
# Copyright (C) 2006-2010 OpenWrt.org
|
|
|
|
#
|
|
|
|
# This is free software, licensed under the GNU General Public License v2.
|
|
|
|
# See /LICENSE for more information.
|
|
|
|
#
|
|
|
|
|
|
|
|
include $(TOPDIR)/rules.mk
|
|
|
|
|
|
|
|
PKG_NAME:=yaddns
|
2010-11-21 22:01:10 +00:00
|
|
|
PKG_VERSION:=0.1.2
|
2010-03-28 16:58:19 +00:00
|
|
|
PKG_RELEASE:=1
|
|
|
|
|
2010-11-21 22:01:10 +00:00
|
|
|
PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).tar.gz
|
2010-03-28 16:58:19 +00:00
|
|
|
PKG_SOURCE_URL:=@SF/yaddns
|
2010-11-21 22:01:10 +00:00
|
|
|
PKG_MD5SUM:=b76aad36ca3341814d5f0c17d6420e8a
|
2010-03-28 16:58:19 +00:00
|
|
|
|
|
|
|
PKG_INSTALL:=1
|
|
|
|
|
|
|
|
include $(INCLUDE_DIR)/package.mk
|
|
|
|
|
|
|
|
define Package/yaddns
|
|
|
|
SECTION:=net
|
|
|
|
CATEGORY:=Network
|
|
|
|
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
|
|
|
|
|
|
|
|
define Package/yaddns/install
|
|
|
|
$(INSTALL_DIR) $(1)/usr/bin
|
|
|
|
$(INSTALL_BIN) $(PKG_INSTALL_DIR)/usr/bin/yaddns $(1)/usr/bin/
|
|
|
|
endef
|
|
|
|
|
|
|
|
$(eval $(call BuildPackage,yaddns))
|