homebrew-core/Formula/logcheck.rb
Marc Abramowitz 10e1dbc520 logcheck 1.3.14
Signed-off-by: Adam Vandenberg <flangy@gmail.com>
2012-05-29 20:52:20 -07:00

19 lines
490 B
Ruby

require 'formula'
class Logcheck < Formula
homepage 'http://logcheck.org/'
url 'http://ftp.de.debian.org/debian/pool/main/l/logcheck/logcheck_1.3.14.tar.gz'
md5 'cbd32dbdcb877f267636205f33ede790'
def install
system "make", "install",
"--always-make",
"DESTDIR=#{prefix}",
"SBINDIR=sbin",
"BINDIR=bin"
end
def test
system "#{sbin}/logtail", "-f", "#{HOMEBREW_REPOSITORY}/README.md"
end
end