homebrew-core/Formula/daemon.rb
Ted Pennings 4cd0935be7 Convert all 'def test' formulae to 'test do'
Closes Homebrew/homebrew#26942.
Closes Homebrew/homebrew#26946.

Signed-off-by: Adam Vandenberg <flangy@gmail.com>
2014-02-24 19:54:02 -08:00

17 lines
368 B
Ruby

require 'formula'
class Daemon < Formula
homepage 'http://libslack.org/daemon/'
url 'http://libslack.org/daemon/download/daemon-0.6.4.tar.gz'
sha1 'fa6298f05f868d54660a7ed70c05fb7a0963a24b'
def install
system "./config"
system "make"
system "make", "PREFIX=#{prefix}", "install"
end
test do
system "#{bin}/daemon", "--version"
end
end