blob: a718846c8eccb34ac84ffe3bd4329a7ff292d2b0 (
plain)
| 1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
 | require 'formula'
class Rkhunter < Formula
  homepage 'http://rkhunter.sourceforge.net/'
  url 'https://downloads.sourceforge.net/project/rkhunter/rkhunter/1.4.2/rkhunter-1.4.2.tar.gz'
  sha1 'da01bc6757e14549560ad6ea46d1e93dbf5ac90f'
  def install
    system "./installer.sh", "--layout", "custom", prefix, "--install"
  end
  test do
    system "#{bin}/rkhunter", "--version"
  end
end
 |