]> git.pld-linux.org Git - packages/aide.git/blob - aide.spec
d759c5df698d91c7a52740c5b22cd4768d6c6ff6
[packages/aide.git] / aide.spec
1 Summary:        Advanced Intrusion Detection Environment
2 Name:           aide
3 Version:        20010624
4 Release:        0.1
5 URL:            http://www.cs.tut.fi/~rammer/aide.html
6 Source0:        %{name}-%{version}.tar.gz
7 #Source1:       %{name}.conf
8 License:        GPL
9 Group:          Console/Security
10 Provides:       aide
11 BuildRequires:  libgcrypt-static
12 BuildRoot:      %{tmpdir}/%{name}-%{version}-root-%(id -u -n)
13
14 %define         _sysconfdir     /etc/%{name}
15
16 %prep
17 %setup -q -n %{name}-%{version}
18 #%patch0 -p1
19
20 %description
21 AIDE creates a database from the regular expression rules that it
22 finds from the config file. Once this database is initialized it can
23 be used to verify the integrity of the files. It has several message
24 digest algorithms (md5,sha1,rmd160,tiger,haval,etc.) that are used to
25 check the integrity of the file. More algorithms can be added with
26 relative ease. All of the usual file attributes can also be checked
27 for inconsistencies.
28
29 %build
30 %configure \
31         --with-config-file=%{_sysconfdir}/aide.conf \
32         --without-zlib
33 %{__make}
34
35 %install
36 rm -rf $RPM_BUILD_ROOT
37 %{__make} install \
38         DESTDIR=$RPM_BUILD_ROOT
39
40 %files
41 %defattr(644,root,root,755)
42 %attr(755,root,root) %{_bindir}/aide
43 %{_mandir}/man[15]/*
44 #%config(noreplace) %{_sysconfdir}/aide.conf
45 #%doc
46
47 %clean
48 #rm -rf $RPM_BUILD_ROOT
This page took 0.048121 seconds and 3 git commands to generate.