8928f7cdda
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
22 lines
526 B
Ruby
22 lines
526 B
Ruby
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
|