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.
This commit is contained in:
parent
d86c42e983
commit
d35482c719
1 changed files with 17 additions and 0 deletions
17
Formula/remind.rb
Normal file
17
Formula/remind.rb
Normal file
|
@ -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
|
Loading…
Reference in a new issue