Makefile cleanup, remove unused variables and options
[openwrt/svn-archive/archive.git] / net / bmon / 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:=bmon
12 PKG_VERSION:=2.1.0
13 PKG_RELEASE:=0
14
15 PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).tar.gz
16 PKG_SOURCE_URL:=http://people.suug.ch/~tgr/bmon/files/
17 PKG_MD5SUM:=3111a027907016c0902d67350c619df6
18 PKG_CAT:=zcat
19
20 PKG_BUILD_DIR:=$(BUILD_DIR)/$(PKG_NAME)-$(PKG_VERSION)
21
22 include $(INCLUDE_DIR)/package.mk
23
24 define Package/bmon
25 SECTION:=net
26 CATEGORY:=Network
27 DEPENDS:=+libncurses
28 TITLE:=bmon is a portable bandwidth monitor
29 DESCRIPTION:=\
30 bmon is a portable bandwidth monitor \\\
31 and rate estimator running on various \\\
32 operating systems. It supports various \\\
33 input methods for different architectures.
34 URL:=http://people.suug.ch/~tgr/bmon/
35 endef
36
37 define Build/Configure
38 $(call Build/Configure/Default, \
39 --disable-cnt-workaround \
40 --disable-dbi \
41 --disable-rrd \
42 --disable-asound \
43 )
44 endef
45
46 define Build/Compile
47 $(call Build/Compile/Default,all)
48 endef
49
50 define Package/bmon/install
51 install -d -m0755 $(1)/usr/sbin
52 install -m0755 $(PKG_BUILD_DIR)/src/bmon $(1)/usr/sbin/
53 endef
54
55 $(eval $(call BuildPackage,bmon))