]> git.pld-linux.org Git - SPECS.git/blob - whowatch.spec
SPECS updated Tue 30 Apr 15:06:09 CEST 2024
[SPECS.git] / whowatch.spec
1 Summary:        whowatch display information about processes and logged users
2 Summary(pl.UTF-8):      whowatch wyświetla informacje o procesach i zalogowanych użytkownikach
3 Name:           whowatch
4 Version:        1.4
5 Release:        3
6 License:        GPL v2
7 Group:          Applications/Console
8 Source0:        http://wizard.ae.krakow.pl/~mike/download/%{name}-%{version}.tar.gz
9 # Source0-md5:  0870155e8b75b99f9954e76fb20f9528
10 Patch0:         %{name}-utmpx.patch
11 URL:            http://wizard.ae.krakow.pl/~mike/#whowatch
12 BuildRequires:  autoconf
13 BuildRequires:  automake
14 BuildRequires:  ncurses-devel >= 5.1
15 BuildRoot:      %{tmpdir}/%{name}-%{version}-root-%(id -u -n)
16
17 %description
18 Whowatch is an interactive terminal utility that displays informations
19 about the users currently logged on to the machine, in real time.
20 Besides standard information (login, tty, host, user's process) you
21 can see type of login (ie. ssh, telnet). You can also see selected
22 user's processes tree or all system processes tree. In the process
23 tree mode there is ability to send INT or KILL signal to selected
24 process.
25
26 %description -l pl.UTF-8
27 Whowatch jest interaktywnym terminalowym narzędziem, które wyświetla
28 informacje o aktualnie zalogowanych użytkownikach w czasie
29 rzeczywistym. Poza standardowymi informacjami (login, tty, host,
30 user's process) można zobaczyć poprzez jaką usługę ktoś sie zalogował
31 (ssh, telnet...). Można także zobaczyć drzewo procesów użytkownika lub
32 drzewo procesów systemowych. W tym drzewie możliwe jest wysyłanie do
33 procesów sygnałów INT lub KILL.
34
35 %prep
36 %setup -q
37 %patch0 -p1
38
39 %build
40 %{__aclocal}
41 %{__autoconf}
42 %configure
43 %{__make}
44
45 %install
46 rm -rf $RPM_BUILD_ROOT
47 install -d $RPM_BUILD_ROOT{%{_bindir},%{_mandir}/man1}
48
49 install whowatch $RPM_BUILD_ROOT%{_bindir}
50 install whowatch.1 $RPM_BUILD_ROOT%{_mandir}/man1
51
52 %files
53 %defattr(644,root,root,755)
54 %doc AUTHORS ChangeLog NEWS KEYS README TODO
55 %attr(755,root,root) %{_bindir}/*
56 %{_mandir}/man1/*
57
58 %clean
59 rm -rf $RPM_BUILD_ROOT
This page took 1.171601 seconds and 3 git commands to generate.