aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorAndre Arko2009-12-23 11:44:34 -0800
committerAdam Vandenberg2010-02-13 15:52:14 -0800
commit95d6dcdfaf77081131e49101dea52f4e4a558c50 (patch)
treecdba030024f2736443dd375873ef0c4ba291559d
parente4b66cec05715ac1f91c719a11252e176c181134 (diff)
downloadhomebrew-95d6dcdfaf77081131e49101dea52f4e4a558c50.tar.bz2
Growlnotify formula, because I hate installing from the Growl DMG
Now with fixed URL. Apparently Github changed their download URL schema. Signed-off-by: Adam Vandenberg <flangy@gmail.com>
-rw-r--r--Library/Formula/growlnotify.rb14
1 files changed, 14 insertions, 0 deletions
diff --git a/Library/Formula/growlnotify.rb b/Library/Formula/growlnotify.rb
new file mode 100644
index 000000000..78a1736e0
--- /dev/null
+++ b/Library/Formula/growlnotify.rb
@@ -0,0 +1,14 @@
+require 'formula'
+
+class Growlnotify <Formula
+ version '1.2'
+ url 'http://github.com/indirect/growlnotify/tarball/v1.2'
+ md5 '9941d5c49862f5391877023fc3baec49'
+ homepage 'http://growl.info/extras.php#growlnotify'
+
+ def install
+ puts @version
+ bin.install("growlnotify")
+ man1.install("growlnotify.1")
+ end
+end