aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Formula
diff options
context:
space:
mode:
authorAlexis Hildebrandt2009-12-27 12:29:02 +0100
committerMax Howell2010-01-23 12:21:14 +0000
commited89f0ba2fafe2fd10c5774f64358f58809d391b (patch)
treebdf4c04859be8190fd1edfab1bbffec2e1e93d43 /Library/Formula
parent3227201ed9c474f917c6b985613659f190e34a52 (diff)
downloadhomebrew-ed89f0ba2fafe2fd10c5774f64358f58809d391b.tar.bz2
Remind 03.01.07
A sophisticated calendar and alarm program. It includes the following features: - A sophisticated scripting language and intelligent handling of exceptions and holidays. - Plain-text, PostScript and HTML output. - Timed reminders and pop-up alarms. - A friendly graphical front-end for people who don't want to learn the scripting language. - Facilities for both the Gregorian and Hebrew calendars. - Support for 12 different languages.
Diffstat (limited to 'Library/Formula')
-rw-r--r--Library/Formula/remind.rb17
1 files changed, 17 insertions, 0 deletions
diff --git a/Library/Formula/remind.rb b/Library/Formula/remind.rb
new file mode 100644
index 000000000..3cf191175
--- /dev/null
+++ b/Library/Formula/remind.rb
@@ -0,0 +1,17 @@
+require 'formula'
+
+class Remind <Formula
+ url 'http://www.roaringpenguin.com/files/download/remind-03.01.07.tar.gz'
+ homepage 'http://www.roaringpenguin.com/products/remind'
+ md5 '9335189e78a11b78d848aeade30058d6'
+
+ def install
+ configure_args = [
+ "--prefix=#{prefix}",
+ "--disable-debug",
+ "--disable-dependency-tracking",
+ ]
+ system "./configure", *configure_args
+ system "make install"
+ end
+end