blob: 29bb6aff9f7627d3e7c4b004936bb7778cf5b2f8 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
require 'formula'
class Growlnotify <Formula
url 'https://github.com/indirect/growlnotify/tarball/v1.2'
md5 '9941d5c49862f5391877023fc3baec49'
homepage 'http://growl.info/extras.php#growlnotify'
def install
bin.install "growlnotify"
man1.install gzip("growlnotify.1")
end
end
|