2011-10-02 18:26:42 +00:00
|
|
|
require 'formula'
|
|
|
|
|
|
|
|
class Chkrootkit < Formula
|
|
|
|
homepage 'http://www.chkrootkit.org/'
|
2012-09-06 03:37:46 +00:00
|
|
|
url 'http://ftp.de.debian.org/debian/pool/main/c/chkrootkit/chkrootkit_0.49.orig.tar.gz'
|
|
|
|
sha1 'cec1a3c482b95b20d3a946b07fffb23290abc4a6'
|
2011-10-02 18:26:42 +00:00
|
|
|
|
|
|
|
def install
|
2012-02-10 02:56:21 +00:00
|
|
|
system "make", "CC=#{ENV.cc}",
|
|
|
|
"CFLAGS=#{ENV.cflags}",
|
2013-12-28 23:28:22 +00:00
|
|
|
"STATIC=",
|
2012-02-10 02:56:21 +00:00
|
|
|
"sense", "all"
|
2011-10-02 18:26:42 +00:00
|
|
|
|
2013-12-28 23:28:22 +00:00
|
|
|
bin.install %w{check_wtmpx chkdirs chklastlog chkproc
|
2012-02-10 02:56:21 +00:00
|
|
|
chkrootkit chkutmp chkwtmp ifpromisc
|
|
|
|
strings-static}
|
|
|
|
doc.install %w{README README.chklastlog README.chkwtmp}
|
2011-10-02 18:26:42 +00:00
|
|
|
end
|
|
|
|
|
2013-03-24 05:07:42 +00:00
|
|
|
test do
|
2013-12-29 03:01:45 +00:00
|
|
|
assert_equal "chkrootkit version #{version}", `#{bin}/chkrootkit -V 2>&1`.strip
|
2011-10-02 18:26:42 +00:00
|
|
|
end
|
|
|
|
end
|