[packages] gzip: update to v1.3.12, add gunzip & zcat scripts, cleanup
[openwrt/svn-archive/archive.git] / utils / sysstat / Makefile
1 #
2 # Copyright (C) 2008-2009 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.5
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:=
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 CONFIGURE_ARGS+= \
38 sa_lib_dir="/usr/lib/sysstat" \
39 sa_dir="/var/log/sysstat" \
40 conf_dir="/etc/sysstat" \
41
42 define Package/sysstat/install
43 $(INSTALL_DIR) $(1)/usr/lib/sysstat
44 $(INSTALL_BIN) $(PKG_BUILD_DIR)/{sadc,sa1,sa2} $(1)/usr/lib/sysstat/
45 $(INSTALL_DIR) $(1)/usr/bin
46 $(INSTALL_BIN) $(PKG_BUILD_DIR)/{sar,sadf,iostat,mpstat,pidstat} $(1)/usr/bin/
47 $(INSTALL_DIR) $(1)/etc/sysstat
48 $(INSTALL_CONF) $(PKG_BUILD_DIR)/sysstat.ioconf $(1)/etc/sysstat/
49 $(INSTALL_CONF) ./files/config $(1)/etc/sysstat/config
50 $(INSTALL_DIR) $(1)/etc/init.d
51 $(INSTALL_BIN) ./files/sysstat.init $(1)/etc/init.d/sysstat
52 endef
53
54 $(eval $(call BuildPackage,sysstat))