Marcus Meissner
32a007d969
- Cleanup of spec file with spec-cleaner. - Enable oom score watching and native-affinity OBS-URL: https://build.opensuse.org/request/show/286981 OBS-URL: https://build.opensuse.org/package/show/Base:System/htop?expand=0&rev=27
71 lines
2.0 KiB
RPMSpec
71 lines
2.0 KiB
RPMSpec
#
|
|
# spec file for package htop
|
|
#
|
|
# Copyright (c) 2015 SUSE LINUX Products GmbH, Nuernberg, Germany.
|
|
#
|
|
# All modifications and additions to the file contributed by third parties
|
|
# remain the property of their copyright owners, unless otherwise agreed
|
|
# upon. The license for this file, and modifications and additions to the
|
|
# file, is the same license as for the pristine package itself (unless the
|
|
# license for the pristine package is not an Open Source License, in which
|
|
# case the license is the MIT License). An "Open Source License" is a
|
|
# license that conforms to the Open Source Definition (Version 1.9)
|
|
# published by the Open Source Initiative.
|
|
|
|
# Please submit bugfixes or comments via http://bugs.opensuse.org/
|
|
#
|
|
|
|
|
|
Name: htop
|
|
Version: 1.0.3
|
|
Release: 0
|
|
Summary: An Interactive text-mode Process Viewer for Linux
|
|
License: GPL-2.0+
|
|
Group: System/Monitoring
|
|
Url: http://hisham.hm/htop
|
|
Source0: http://hisham.hm/htop/releases/%{version}/%{name}-%{version}.tar.gz
|
|
Patch0: htop-desktop-file-fix-thoenig-01.patch
|
|
Patch1: htop-stdgnu.patch
|
|
BuildRequires: automake
|
|
BuildRequires: ncurses-devel
|
|
BuildRequires: python
|
|
BuildRequires: update-desktop-files
|
|
Recommends: lsof
|
|
Recommends: strace
|
|
BuildRoot: %{_tmppath}/%{name}-%{version}-build
|
|
|
|
%description
|
|
htop is an interactive text-mode process viewer for Linux. It aims to
|
|
be a better 'top' and requires ncurses. It is tested with Linux 2.6,
|
|
but is also reported to work (and was originally developed) with the
|
|
2.4 series.
|
|
|
|
%prep
|
|
%setup -q
|
|
%patch0
|
|
%patch1 -p1
|
|
|
|
%build
|
|
autoreconf -fi
|
|
%configure \
|
|
--enable-taskstats \
|
|
--enable-unicode \
|
|
--enable-native-affinity \
|
|
--enable-cgroup \
|
|
--enable-oom
|
|
make %{?_smp_mflags}
|
|
|
|
%install
|
|
make DESTDIR=%{buildroot} install %{?_smp_mflags}
|
|
%suse_update_desktop_file -i %{name} System Monitor
|
|
|
|
%files
|
|
%defattr(-,root,root)
|
|
%doc COPYING
|
|
%{_bindir}/%{name}
|
|
%{_datadir}/applications/%{name}.desktop
|
|
%{_datadir}/pixmaps/%{name}.png
|
|
%{_mandir}/*/%{name}*
|
|
|
|
%changelog
|