summaryrefslogtreecommitdiff
path: root/samhain/Pkgfile
blob: ba4fd9bbc32d19f250e96d8f41f09f5ac2f97a1a (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=3.1.6
    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                 --mandir=/usr/man \
   16                 --localstatedir=/var \
   17                 --sysconfdir=/etc \
   18                 --with-log-file=/var/log/samhain.log \
   19                 --enable-static \
   20                 --enable-login-watch \
   21                 --enable-suidcheck
   22     make
   23     make DESTDIR=$PKG install
   24 
   25     rm -r $PKG/var/run
   26     touch $PKG/var/log/samhain.log
   27     chmod 0640 $PKG/var/log/samhain.log
   28 }

Generated by cgit