redsocks: moved to github
[packages.git] / net / yaddns / Makefile
1 #
2 # Copyright (C) 2006-2012 OpenWrt.org
3 #
4 # This is free software, licensed under the GNU General Public License v2.
5 # See /LICENSE for more information.
6 #
7
8 include $(TOPDIR)/rules.mk
9
10 PKG_NAME:=yaddns
11 PKG_VERSION:=1.1
12 PKG_RELEASE:=2
13
14 PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).tar.gz
15 PKG_SOURCE_URL:=http://download.gna.org/yaddns/
16 PKG_MD5SUM:=d8b6ed9bed61dabaa17188d831e352d1
17
18 PKG_INSTALL:=1
19
20 include $(INCLUDE_DIR)/package.mk
21
22 define Package/yaddns
23   SECTION:=net
24   CATEGORY:=Network
25   DEPENDS:=+USE_GLIBC:librt
26   SUBMENU:=IP Addresses and Names
27   TITLE:=Yet Another DDNS client
28   URL:=http://patatrac.info/yaddns
29 endef
30
31 define Package/yaddns/description
32 Yaddns is a small ddns client with multiple ddns server supports (dyndns, ...)
33 and a high flexibility. Yaddns is particularly appropriate for embedded systems.
34 endef
35
36 define Package/yaddns/conffiles
37 /etc/config/ddns
38 endef
39
40 define Package/yaddns/install
41         $(INSTALL_DIR) $(1)/usr/bin
42         $(INSTALL_BIN) $(PKG_INSTALL_DIR)/usr/bin/yaddns $(1)/usr/bin/
43         $(CP) ./files/* $(1)/
44 endef
45
46 $(eval $(call BuildPackage,yaddns))