[package] update sysstat to 9.0.4 (#5672)
[packages.git] / utils / sysstat / Makefile
1 #
2 # Copyright (C) 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
8 include $(TOPDIR)/rules.mk
9
10 PKG_NAME:=sysstat
11 PKG_VERSION:=9.0.4
12 PKG_RELEASE:=1
13
14 PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).tar.bz2
15 PKG_SOURCE_URL:=http://pagesperso-orange.fr/sebastien.godard
16 PKG_MD5SUM:=4ecde27986c3745a363a95e34cf897c8
17
18 include $(INCLUDE_DIR)/package.mk
19
20 define Package/sysstat
21   SECTION:=utils
22   CATEGORY:=Utilities
23   TITLE:=Sysstat performance monitoring tools
24   URL:=http://pagesperso-orange.fr/sebastien.godard/index.html
25 endef
26
27 define Package/sysstat/description
28   The sysstat utilities are a collection of performance monitoring tools for
29   Linux. These include sar, sadf, mpstat, iostat, pidstat and sa tools.
30 endef
31
32 define Package/sysstat/conffiles
33 /etc/sysstat/sysstat.ioconf
34 /etc/sysstat/config
35 endef
36
37 define Build/Configure
38         $(call Build/Configure/Default, \
39                 sa_lib_dir="/usr/lib/sysstat" \
40                 sa_dir="/var/log/sysstat" \
41                 conf_dir="/etc/sysstat" \
42         )
43 endef
44
45 define Package/sysstat/install
46         $(INSTALL_DIR) $(1)/usr/lib/sysstat
47         $(INSTALL_BIN) $(PKG_BUILD_DIR)/{sadc,sa1,sa2} $(1)/usr/lib/sysstat
48         $(INSTALL_DIR) $(1)/usr/bin
49         $(INSTALL_BIN) $(PKG_BUILD_DIR)/{sar,sadf,iostat,mpstat,pidstat} $(1)/usr/bin
50         $(INSTALL_DIR) $(1)/etc/sysstat
51         $(INSTALL_CONF) $(PKG_BUILD_DIR)/sysstat.ioconf $(1)/etc/sysstat
52         $(INSTALL_CONF) ./files/config $(1)/etc/sysstat/config
53         $(INSTALL_DIR) $(1)/etc/init.d
54         $(INSTALL_BIN) ./files/sysstat.init $(1)/etc/init.d/sysstat
55 endef
56
57 $(eval $(call BuildPackage,sysstat))