d35482c719
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.
17 lines
447 B
Ruby
17 lines
447 B
Ruby
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
|