htop/htop.spec

74 lines
2.0 KiB
RPMSpec
Raw Normal View History

#
# spec file for package htop
#
# Copyright (c) 2013 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.2
Release: 0
Summary: An Interactive text-mode Process Viewer for Linux
License: GPL-2.0+
Group: System/Monitoring
Url: http://htop.sourceforge.net
Source0: %{name}-%{version}.tar.gz
Patch0: htop-desktop-file-fix-thoenig-01.patch
BuildRoot: %{_tmppath}/%{name}-%{version}-build
BuildRequires: ncurses-devel
BuildRequires: python
BuildRequires: update-desktop-files
Recommends: strace
Recommends: lsof
%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.
Authors:
--------
Hisham H. Muhammad
%prep
%setup
%patch0 -p0
%build
export CFLAGS="%{optflags} `ncursesw6-config --cflags`"
export LDFLAGS="`ncursesw6-config --libs`"
%configure \
--enable-unicode \
--enable-taskstats \
--enable-cgroup
make %{?_smp_mflags}
%install
make install DESTDIR="%buildroot"
%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