aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Formula/wyrd.rb
diff options
context:
space:
mode:
authorAlexis Hildebrandt2009-12-27 12:29:22 +0100
committerMax Howell2010-01-23 12:21:14 +0000
commit6e7771e5ccafb7a808040af6b86903b38c3e1e30 (patch)
tree6dc077a18cebb0237c97e1481bb10edefe544f71 /Library/Formula/wyrd.rb
parented89f0ba2fafe2fd10c5774f64358f58809d391b (diff)
downloadhomebrew-6e7771e5ccafb7a808040af6b86903b38c3e1e30.tar.bz2
Wyrd 1.4.4
A curses front-end for Remind, a powerful calendar and alarm application. The display features a scrollable time table suitable for visualizing your schedule at a glance. Wyrd integrates with an external editor of your choice to make editing of reminder files more efficient, and provides hotkeys to quickly access the most common Remind options. Other features include: - extensive configurability - Mutt-like interface design - minimal resource requirements
Diffstat (limited to 'Library/Formula/wyrd.rb')
-rw-r--r--Library/Formula/wyrd.rb22
1 files changed, 22 insertions, 0 deletions
diff --git a/Library/Formula/wyrd.rb b/Library/Formula/wyrd.rb
new file mode 100644
index 000000000..71f5492ca
--- /dev/null
+++ b/Library/Formula/wyrd.rb
@@ -0,0 +1,22 @@
+require 'formula'
+
+class Wyrd <Formula
+ url 'http://pessimization.com/software/wyrd/wyrd-1.4.4.tar.gz'
+ homepage 'http://pessimization.com/software/wyrd/'
+ md5 'a376c05ba614625da06082d850c742c7'
+
+ depends_on 'remind'
+ depends_on 'objective-caml'
+
+ def install
+ configure_args = [
+ "--prefix=#{prefix}",
+ "--disable-debug",
+ "--disable-dependency-tracking",
+ "--enable-utf8",
+ ]
+ system "./configure", *configure_args
+ system "make"
+ system "make install"
+ end
+end