unfs3: add support for compiling with the external librpc
[openwrt/svn-archive/archive.git] / net / yaddns / Makefile
1 #
2 # Copyright (C) 2006-2010 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.0-rc3
12 PKG_RELEASE:=1
13
14 PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).tar.gz
15 PKG_SOURCE_URL:=http://download.gna.org/yaddns/
16 PKG_MD5SUM:=fa1492212a09e0f5f39d3fa65ddf257e
17
18 PKG_INSTALL:=1
19
20 include $(INCLUDE_DIR)/package.mk
21
22 define Package/yaddns
23 SECTION:=net
24 CATEGORY:=Network
25 TITLE:=Yet Another DDNS client
26 URL:=http://patatrac.info/yaddns
27 endef
28
29 define Package/yaddns/description
30 Yaddns is a small ddns client with multiple ddns server supports (dyndns, ...)
31 and a high flexibility. Yaddns is particularly appropriate for embedded systems.
32 endef
33
34 define Package/yaddns/conffiles
35 /etc/config/ddns
36 endef
37
38 define Package/yaddns/install
39 $(INSTALL_DIR) $(1)/usr/bin
40 $(INSTALL_BIN) $(PKG_INSTALL_DIR)/usr/bin/yaddns $(1)/usr/bin/
41 $(CP) ./files/* $(1)/
42 endef
43
44 $(eval $(call BuildPackage,yaddns))