homebrew-core/Formula/remind.rb
Alexis Hildebrandt 53b099c785 Update Formula: remind
Remove Apple specific start-up message

Signed-off-by: Adam Vandenberg <flangy@gmail.com>
2010-09-15 09:17:25 -07:00

19 lines
600 B
Ruby

require 'formula'
class Remind <Formula
url 'http://www.roaringpenguin.com/files/download/remind-03.01.09.tar.gz'
homepage 'http://www.roaringpenguin.com/products/remind'
md5 '261a5fb774a1d671cc71e36fd0ea02b3'
def install
# Remove unnecessary sleeps when running on Apple
inreplace "configure", "sleep 1", "true"
inreplace "src/init.c" do |s|
s.gsub! "sleep(5);", ""
s.gsub! /rkrphgvba\(.\);/, ""
end
system "./configure", "--disable-debug", "--disable-dependency-tracking",
"--prefix=#{prefix}"
system "make install"
end
end