adds gstreamer and basic plugins
[openwrt/svn-archive/archive.git] / net / ez-ipupdate / Makefile
1 #
2 # Copyright (C) 2006 OpenWrt.org
3 #
4 # This is free software, licensed under the GNU General Public License v2.
5 # See /LICENSE for more information.
6 #
7 # $Id$
8
9 include $(TOPDIR)/rules.mk
10
11 PKG_NAME:=ez-ipupdate
12 PKG_VERSION:=3.0.11b8
13 PKG_RELEASE:=3
14
15 PKG_SOURCE:=$(PKG_NAME)_$(PKG_VERSION).orig.tar.gz
16 PKG_SOURCE_URL:=http://ftp.debian.org/debian/pool/main/e/ez-ipupdate \
17 http://ftp.de.debian.org/debian/pool/main/e/ez-ipupdate
18 PKG_MD5SUM:=000211add4c4845ffa4211841bff4fb0
19
20 PKG_BUILD_DIR:=$(BUILD_DIR)/$(PKG_NAME)-$(PKG_VERSION)
21
22 include $(INCLUDE_DIR)/package.mk
23
24 define Package/ez-ipupdate
25 SECTION:=net
26 CATEGORY:=Network
27 TITLE:=Dynamic DNS services client
28 URL:=http://ez-ipupdate.com/
29 endef
30
31 define Package/ez-ipupdate/conffiles
32 /etc/ez-ipupdate.conf
33 endef
34
35 # uses GNU configure
36
37 define Build/Compile
38 $(MAKE) -C $(PKG_BUILD_DIR)
39 endef
40
41 define Package/ez-ipupdate/install
42 $(INSTALL_DIR) $(1)/usr/sbin
43 $(INSTALL_BIN) $(PKG_BUILD_DIR)/ez-ipupdate $(1)/usr/sbin/
44 $(INSTALL_DIR) $(1)/etc
45 $(INSTALL_CONF) ./files/ez-ipupdate.conf $(1)/etc/
46 $(INSTALL_DIR) $(1)/etc/hotplug.d/iface
47 $(INSTALL_BIN) ./files/ez-ipupdate.hotplug $(1)/etc/hotplug.d/iface/30-ez-ipupdate
48 endef
49
50 $(eval $(call BuildPackage,ez-ipupdate))