ntpclient: fix the script on avr32, remove useless loop
[openwrt/svn-archive/archive.git] / net / softflowd / Makefile
1 #
2 # Copyright (C) 2007 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:=softflowd
12 PKG_VERSION:=0.9.8
13 PKG_RELEASE:=1
14
15 PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).tar.gz
16 PKG_SOURCE_URL:=http://www.mindrot.org/files/softflowd/
17 PKG_MD5SUM:=0054d1c80494396cc15edb0a1c7748b1
18
19 PKG_FIXUP = libtool
20
21 include $(INCLUDE_DIR)/package.mk
22
23 define Package/softflowd
24 SECTION:=net
25 CATEGORY:=Network
26 DEPENDS:=+libpcap
27 TITLE:=softflowd
28 URL:=http://www.mindrot.org/projects/softflowd/
29 endef
30
31 define Package/softflowd/description
32 Software netflow exporter
33 endef
34
35 define Build/Compile
36 $(MAKE) -C $(PKG_BUILD_DIR) DESTDIR="$(PKG_INSTALL_DIR)" softflowd softflowctl
37 endef
38
39 define Package/softflowd/install
40 $(INSTALL_DIR) $(1)/usr/sbin
41 $(INSTALL_BIN) $(PKG_BUILD_DIR)/softflowd $(1)/usr/sbin/
42 $(INSTALL_BIN) $(PKG_BUILD_DIR)/softflowctl $(1)/usr/sbin/
43 $(INSTALL_DIR) $(1)/etc/config
44 $(INSTALL_DATA) ./files/$(PKG_NAME).config $(1)/etc/config/$(PKG_NAME)
45 $(INSTALL_DIR) $(1)/etc/init.d
46 $(INSTALL_BIN) ./files/$(PKG_NAME).init $(1)/etc/init.d/$(PKG_NAME)
47 endef
48
49 $(eval $(call BuildPackage,softflowd))