blob: e8f035b62add1abb9e0d069b1d18a836453bc2bb (
plain)
1 # Description: File integrity / intrusion detection system
2 # URL: http://la-samhna.de/samhain/
3 # Maintainer: Juergen Daubert, jue at crux dot nu
4
5 name=samhain
6 version=4.3.2
7 release=1
8 source=(http://la-samhna.de/archive/${name}_signed-$version.tar.gz)
9
10 build () {
11 tar xfz $name-$version.tar.gz
12
13 cd $name-$version
14 ./configure --prefix=/usr \
15 --localstatedir=/var \
16 --sysconfdir=/etc \
17 --with-log-file=/var/log/samhain.log \
18 --enable-static \
19 --enable-login-watch \
20 --enable-suidcheck
21 make
22 make DESTDIR=$PKG install
23
24 rm -r $PKG/var/run
25 touch $PKG/var/log/samhain.log
26 chmod 0640 $PKG/var/log/samhain.log
27 }
|