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