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