2011-10-02 18:26:42 +00:00
|
|
|
require 'formula'
|
|
|
|
|
|
|
|
class Chkrootkit < Formula
|
|
|
|
homepage 'http://www.chkrootkit.org/'
|
2012-02-10 02:56:21 +00:00
|
|
|
url 'ftp://ftp.pangeia.com.br/pub/seg/pac/chkrootkit-0.49.tar.gz'
|
2011-10-02 18:26:42 +00:00
|
|
|
md5 '304d840d52840689e0ab0af56d6d3a18'
|
|
|
|
|
|
|
|
def install
|
2011-10-03 01:06:53 +00:00
|
|
|
chmod 0644, 'Makefile' # Makefile is read-only
|
2011-10-02 18:26:42 +00:00
|
|
|
|
|
|
|
inreplace 'Makefile' do |s|
|
2011-10-03 01:06:53 +00:00
|
|
|
s.remove_make_var! 'STATIC'
|
2011-10-02 18:26:42 +00:00
|
|
|
end
|
|
|
|
|
2012-02-10 02:56:21 +00:00
|
|
|
system "make", "CC=#{ENV.cc}",
|
|
|
|
"CFLAGS=#{ENV.cflags}",
|
|
|
|
"sense", "all"
|
2011-10-02 18:26:42 +00:00
|
|
|
|
2012-02-10 02:56:21 +00:00
|
|
|
sbin.install %w{check_wtmpx chkdirs chklastlog chkproc
|
|
|
|
chkrootkit chkutmp chkwtmp ifpromisc
|
|
|
|
strings-static}
|
|
|
|
doc.install %w{README README.chklastlog README.chkwtmp}
|
2011-10-02 18:26:42 +00:00
|
|
|
end
|
|
|
|
|
|
|
|
def test
|
|
|
|
# pipe stdout to cat since chkrootkit -V exits with status 1
|
|
|
|
system "#{sbin}/chkrootkit -V | cat"
|
|
|
|
end
|
|
|
|
end
|