-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathhtop.spec
63 lines (45 loc) · 1.79 KB
/
htop.spec
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
###############################################################################
Summary: Interactive process viewer
Name: htop
Version: 2.0.2
Release: 0%{?dist}
License: GPL
Group: Applications/System
URL: http://htop.sourceforge.net/
Source: http://hisham.hm/htop/releases/%{version}/%{name}-%{version}.tar.gz
BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n)
BuildRequires: gcc >= 3.0 ncurses-devel
###############################################################################
%description
htop is an interactive process viewer for Linux.
###############################################################################
%prep
%setup -q
%build
%configure
%{__make} %{?_smp_mflags}
%install
%{__rm} -rf %{buildroot}
%{make_install}
%clean
%{__rm} -rf %{buildroot}
###############################################################################
%files
%defattr(-, root, root, 0755)
%doc AUTHORS ChangeLog COPYING INSTALL NEWS README
%doc %{_mandir}/man1/htop.1*
%{_bindir}/htop
%{_datadir}/applications/htop.desktop
%{_datadir}/pixmaps/htop.png
###############################################################################
%changelog
* Fri Aug 26 2016 Gleb Goncharov <ggoncharov@simtechdev.com> - 2.0.2-0
- Updated to version 2.0.2
* Fri Feb 12 2016 Gleb Goncharov <ggoncharov@simtechdev.com> - 2.0.0-0
- Updated to version 2.0.0
* Sun May 25 2014 Anton Novojilov <andy@essentialkaos.com> - 1.0.3-0
- Updated to version 1.0.3
* Fri Feb 1 2013 Anton Novojilov <andy@essentialkaos.com> - 1.0.2-0
- Updated to version 1.0.2
* Sat Apr 21 2012 Anton Novojilov <andy@essentialkaos.com> - 1.0.1-3
- Updated to release 1.0.1 and rewrited spec by David Hrbáč