11 lines
182 B
Ruby
11 lines
182 B
Ruby
|
require 'formula'
|
||
|
|
||
|
class Growlme <Formula
|
||
|
head 'git://github.com/robey/growlme.git'
|
||
|
homepage 'http://github.com/robey/growlme'
|
||
|
|
||
|
def install
|
||
|
bin.install "growlme"
|
||
|
end
|
||
|
end
|