1e75d19c9a
Move content from stx-utils into stx-integ or stx-update Packages will be relocated to stx-update: enable-dev-patch extras stx-integ: config-files/ io-scheduler filesystem/ filesystem-scripts grub/ grubby logging/ logmgmt tools/ collector monitor-tools tools/engtools/ hostdata-collectors parsers utilities/ build-info branding (formerly wrs-branding) platform-util Change-Id: Id181ee00015b41c50c75250384e7fbf36a300c1c Story: 2002801 Task: 22687 Signed-off-by: Scott Little <scott.little@windriver.com>
35 lines
855 B
RPMSpec
35 lines
855 B
RPMSpec
Summary: Monitor tools package
|
|
Name: monitor-tools
|
|
Version: 1.0
|
|
Release: %{tis_patch_ver}%{?_tis_dist}
|
|
License: Apache-2.0
|
|
Group: base
|
|
Packager: Wind River <info@windriver.com>
|
|
URL: unknown
|
|
BuildArch: noarch
|
|
Source: %name-%version.tar.gz
|
|
#Requires: /usr/bin/perl
|
|
|
|
%description
|
|
This package contains data collection tools to monitor host performance.
|
|
Tools are general purpose engineering and debugging related. Includes
|
|
overall memory, cpu occupancy, per-task cpu, per-task scheduling, per-task
|
|
io.
|
|
|
|
%prep
|
|
%autosetup
|
|
|
|
%install
|
|
rm -rf $RPM_BUILD_ROOT
|
|
%global _buildsubdir %{_builddir}/%{name}-%{version}
|
|
install -d %{buildroot}/usr/bin
|
|
install %{_buildsubdir}/memtop %{buildroot}/usr/bin
|
|
install %{_buildsubdir}/schedtop %{buildroot}/usr/bin
|
|
install %{_buildsubdir}/occtop %{buildroot}/usr/bin
|
|
|
|
%files
|
|
%license LICENSE
|
|
%defattr(-,root,root,-)
|
|
/usr/bin/*
|
|
|