summaryrefslogtreecommitdiff
path: root/samhain/Pkgfile
blob: 3de7769797ffebd3e0b5ade2cee66032cbeb5e3a (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.4.0
    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 }

Generated by cgit