homebrew-core/Formula/growly.rb
Ryan Kee 7e56859a4a growly: remove growl-notify dependency
Due to the removal of growl-notify from Homebrew I'm removing the
dependency from the growly formula.

Closes Homebrew/homebrew#9339.

Signed-off-by: Jack Nagel <jacknagel@gmail.com>
2011-12-30 17:08:02 -06:00

16 lines
359 B
Ruby

require 'formula'
class Growly < Formula
homepage 'https://github.com/ryankee/growly'
head 'https://github.com/ryankee/growly.git'
url 'https://github.com/downloads/ryankee/growly/growly-v0.2.0.tar.gz'
md5 'a3e4922d619cfeb00009dc55163f0974'
def install
bin.install 'growly'
end
def test
system 'growly "echo Hello, world!"'
end
end