]> git.pld-linux.org Git - packages/unhide.git/blob - unhide.spec
a3c8ca15d89b174642a7d44f3f94c694cc242cc3
[packages/unhide.git] / unhide.spec
1 Summary:        forensic tool to find hidden processes
2 Summary(pl.UTF-8):      narzędzie do znajdywania ukrytych procesów
3 Name:           unhide
4 Version:        20090810
5 Release:        1
6 License:        GPL v3
7 Group:          Applications
8 Source0:        http://www.security-projects.com/%{name}%{version}.tgz
9 # Source0-md5:  f9842175046e6eb10d22f5a988293171
10 URL:            http://www.security-projects.com/?Unhide
11 BuildRoot:      %{tmpdir}/%{name}-%{version}-root-%(id -u -n)
12
13 %description
14 Unhide is a forensic tool to find hidden processes and TCP/UDP ports
15 by rootkits / LKMs or by another hidden technique.
16
17 %description -l pl.UTF-8
18 Unhide jest narzędziem służącym do znajdywania ukrytych procesów oraz
19 portów TCP/UDP używanych przez rootkity / LKM lub też inną technologie
20 ukrywania.
21
22 %prep
23 %setup -q
24
25 %build
26 %{__cc} %{rpmcflags} %{rpmldflags} unhide.c             -o unhide-linux24
27 %{__cc} %{rpmcflags} %{rpmldflags} unhide-tcp.c         -o unhide-tcp
28 %{__cc} %{rpmcflags} %{rpmldflags} unhide-linux26.c     -o unhide
29
30 %install
31 rm -rf $RPM_BUILD_ROOT
32 install -d $RPM_BUILD_ROOT{%{_bindir},%{_mandir}/man8/}
33 install man/unhide* $RPM_BUILD_ROOT%{_mandir}/man8
34 install unhide-linux24 unhide-tcp unhide $RPM_BUILD_ROOT%{_bindir}
35
36 %clean
37 rm -rf $RPM_BUILD_ROOT
38
39 %files
40 %defattr(644,root,root,755)
41 %doc README.txt LEEME.txt
42 %attr(755,root,root) %{_bindir}/*
43 %{_mandir}/man8/unhide*
This page took 0.08314 seconds and 2 git commands to generate.