aboutsummaryrefslogtreecommitdiffstats
path: root/Library
diff options
context:
space:
mode:
authorJamie Macey2010-10-07 11:16:44 -0700
committerAdam Vandenberg2010-10-07 12:09:57 -0700
commitc34ca41dc6b8b3a0fbabe53ba6b5b77149f90c62 (patch)
tree1062a6f85e80304cbfa67f0bd46f5b5d258ee3e4 /Library
parent4636c06ee05417e56c825648b42f452c60aba08b (diff)
downloadhomebrew-c34ca41dc6b8b3a0fbabe53ba6b5b77149f90c62.tar.bz2
formula for gcal
Signed-off-by: Adam Vandenberg <flangy@gmail.com>
Diffstat (limited to 'Library')
-rw-r--r--Library/Formula/gcal.rb12
1 files changed, 12 insertions, 0 deletions
diff --git a/Library/Formula/gcal.rb b/Library/Formula/gcal.rb
new file mode 100644
index 000000000..52769e19d
--- /dev/null
+++ b/Library/Formula/gcal.rb
@@ -0,0 +1,12 @@
+require 'formula'
+
+class Gcal <Formula
+ url 'http://ftp.gnu.org/gnu/gcal/gcal-3.6.tar.gz'
+ homepage 'http://www.gnu.org/software/gcal/'
+ md5 '9c3819ca118d6e3adb6a716858cba7d6'
+
+ def install
+ system "./configure", "--prefix=#{prefix}"
+ system "make install"
+ end
+end