summaryrefslogtreecommitdiffstats
path: root/net/slurm/Makefile
blob: 821808d653b07e175e74e78ff88a3582dbd234eb (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
#
# Copyright (C) 2006 OpenWrt.org
#
# This is free software, licensed under the GNU General Public License v2.
# See /LICENSE for more information.
#

include $(TOPDIR)/rules.mk

PKG_NAME:=slurm
PKG_VERSION:=0.3.3
PKG_RELEASE:=1

PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).tar.gz
PKG_SOURCE_URL:=http://www.wormulon.net/slurm/
PKG_MD5SUM:=e68d09202b835c644f7f6b7f070f29a2

PKG_INSTALL:=1

include $(INCLUDE_DIR)/package.mk

define Package/slurm
  SECTION:=net
  CATEGORY:=Network
  DEPENDS:=+libncurses
  TITLE:=A realtime network interface monitor
  URL:=http://www.wormulon.net/slurm/
endef

define Package/slurm/description
	A realtime network interface monitor with the following features:
	- realtime traffic statistics divided into incoming and outgoing ;
	- optional combined view ;
	- can monitor any kind of network interface ;
	- shows detailed statistics about the interface ;
	- it's themeable.
endef

define Build/Configure
	(cd $(PKG_BUILD_DIR); touch \
		configure.in \
		aclocal.m4 \
		Makefile.in \
		config.h.in \
		configure \
	);
	$(call Build/Configure/Default, \
		, \
		LIBS="-lncurses" \
		ac_cv_lib_ncurses_use_default_colors=yes \
	)
endef

define Package/slurm/install
	$(INSTALL_DIR) $(1)/usr/bin
	$(INSTALL_BIN) $(PKG_INSTALL_DIR)/usr/bin/slurm $(1)/usr/bin/
endef

$(eval $(call BuildPackage,slurm))