91b006b271033788fdfc60c3723dcb203829fbe1
[openwrt/svn-archive/archive.git] / net / miniupnpd / Makefile
1 #
2 # Copyright (C) 2006-2008 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:=miniupnpd
12 PKG_VERSION:=1.1
13 PKG_RELEASE:=5
14 PKG_MD5SUM:=a0f6651476721db9b554668c8c83b151
15
16 PKG_SOURCE_URL:=http://miniupnp.free.fr/files
17 PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).tar.gz
18
19 include $(INCLUDE_DIR)/package.mk
20
21 define Package/miniupnpd
22 SECTION:=net
23 CATEGORY:=Network
24 DEPENDS:=+iptables
25 TITLE:=Lightweight UPnP daemon
26 URL:=http://miniupnp.tuxfamily.org/
27 endef
28
29 define Build/Compile
30 ln -sf $(PKG_BUILD_DIR)/config.h.openwrt $(PKG_BUILD_DIR)/config.h
31 $(MAKE) -C $(PKG_BUILD_DIR) -f Makefile.openwrt \
32 $(TARGET_CONFIGURE_OPTS) \
33 STAGING_DIR="$(STAGING_DIR)" \
34 CFLAGS="$(TARGET_CFLAGS) -I $(STAGING_DIR)/usr/include" \
35 LIBS="$(STAGING_DIR)/usr/lib/libiptc.a"
36 endef
37
38 define Package/miniupnpd/install
39 $(INSTALL_DIR) $(1)/usr/bin $(1)/etc/init.d $(1)/etc/config $(1)/etc/hotplug.d/iface $(1)/lib/miniupnpd
40 $(INSTALL_BIN) $(PKG_BUILD_DIR)/miniupnpd $(1)/usr/bin/
41 $(INSTALL_BIN) ./files/miniupnpd.init $(1)/etc/init.d/miniupnpd
42 $(INSTALL_DATA) ./files/upnpd.config $(1)/etc/config/upnpd
43 $(INSTALL_DATA) ./files/miniupnpd.hotplug $(1)/etc/hotplug.d/iface/20-miniupnpd
44 $(INSTALL_DATA) ./files/miniupnpd.firewall $(1)/lib/miniupnpd/firewall.sh
45 endef
46
47 $(eval $(call BuildPackage,miniupnpd))