[packages] quagga{,-unstable}: Merge quagga-unstable package with quagga package
[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:=0.1.1
12 PKG_RELEASE:=1
13
14 PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).tar.bz2
15 PKG_SOURCE_URL:=@SF/yaddns
16 PKG_MD5SUM:=2708d3e47a486b1872ef9c5537cd2f0d
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:=@BROKEN
26 TITLE:=Yet Another DDNS client
27 URL:=http://patatrac.info/yaddns
28 endef
29
30 define Package/yaddns/description
31 Yaddns is a small ddns client with multiple ddns server supports (dyndns, ...)
32 and a high flexibility. Yaddns is particularly appropriate for embedded systems.
33 endef
34
35 define Package/yaddns/install
36 $(INSTALL_DIR) $(1)/usr/bin
37 $(INSTALL_BIN) $(PKG_INSTALL_DIR)/usr/bin/yaddns $(1)/usr/bin/
38 endef
39
40 $(eval $(call BuildPackage,yaddns))