aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Formula
diff options
context:
space:
mode:
Diffstat (limited to 'Library/Formula')
-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