homebrew-core/Formula/rkhunter.rb
Nils Caspar 406fa8c035 rkhunter 1.4.0
Rootkit Hunter scans systems for known and unknown rootkits, backdoors,
sniffers and exploits.

Closes Homebrew/homebrew#25555.

Signed-off-by: Adam Vandenberg <flangy@gmail.com>
2014-02-18 20:04:51 -08:00

15 lines
390 B
Ruby

require 'formula'
class Rkhunter < Formula
homepage 'http://rkhunter.sourceforge.net/'
url 'http://downloads.sourceforge.net/project/rkhunter/rkhunter/1.4.0/rkhunter-1.4.0.tar.gz'
sha1 '48798beec504c00af93bf64b6e35dfc7d7aaff07'
def install
system "./installer.sh", "--layout", "custom", prefix, "--install"
end
test do
system "#{bin}/rkhunter", "--version"
end
end