]> git.pld-linux.org Git - SPECS.git/blob - rats.spec
SPECS updated Wed 28 Jul 14:48:01 CEST 2021
[SPECS.git] / rats.spec
1 Summary:        Rough Auditing Tool for Security
2 Summary(pl.UTF-8):      Narzędzie do pobieżnych audytów bezpieczeństwa
3 Name:           rats
4 Version:        2.1
5 Release:        0.1
6 License:        GPL v2
7 Vendor:         Secure Software Solutions
8 Group:          Development/Tools
9 Source0:        http://www.securesw.com/rats/%{name}-%{version}.tar.gz
10 # Source0-md5:  adf31806f1eff0c353abcfd57653ecb3
11 URL:            http://www.securesw.com/rats/
12 BuildRequires:  autoconf
13 BuildRequires:  automake
14 BuildRequires:  expat-devel
15 BuildRequires:  flex
16 BuildRoot:      %{tmpdir}/%{name}-%{version}-root-%(id -u -n)
17
18 %description
19 RATS scans through code, finding potentially dangerous function calls.
20 The goal of this tool is not to definitively find bugs (yet). The
21 current goal is to provide a reasonable starting point for performing
22 manual security audits.
23
24 The initial vulnerability database is taken directly from things that
25 could be easily found when starting with the forthcoming book,
26 "Building Secure Software" by Viega and McGraw.
27
28 %description -l pl.UTF-8
29 RATS skanuje kod, znajdując wywołania potencjalnie niebezpiecznych
30 funkcji. Celem tego narzędzia nie jest (jeszcze) definitywne
31 znajdowanie błędów. Aktualnym celem jest dostarczenie sensownego
32 punktu startowego do przeprowadzania ręcznych audytów bezpieczeństwa.
33
34 Początkowa baza dziur jest brana bezpośrednio z rzeczy, które mogą być
35 łatwo znalezione przy lekturze nadchodzącej książki "Building Secure
36 Software" napisanaj przez Viegę i McGrawa.
37
38 %prep
39 %setup -q
40
41 %build
42 %configure \
43         --datadir=%{_datadir}/%{name}
44 %{__make}
45
46 %install
47 rm -rf $RPM_BUILD_ROOT
48 %{__make} install DESTDIR=$RPM_BUILD_ROOT \
49         prefix=$RPM_BUILD_ROOT%{_prefix} \
50         BINDIR=$RPM_BUILD_ROOT%{_bindir} \
51         LIBDIR=$RPM_BUILD_ROOT%{_libdir} \
52         MANDIR=$RPM_BUILD_ROOT%{_mandir} \
53         SHAREDIR=$RPM_BUILD_ROOT%{_datadir}/%{name}
54
55 %clean
56 rm -rf $RPM_BUILD_ROOT
57
58 %files
59 %defattr(644,root,root,755)
60 %doc README
61 %attr(755,root,root) %{_bindir}/rats
62 %{_datadir}/%{name}
63 %{_mandir}/man1/*
This page took 0.768455 seconds and 3 git commands to generate.