homebrew-core/Formula/remind.rb
Alexis Hildebrandt 32c5b650ec Update Formula: remind
Remove unnecessary pause when building and running on Apple

Signed-off-by: Adam Vandenberg <flangy@gmail.com>
2010-07-27 15:15:04 -07:00

16 lines
536 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", "sleep(5);", ""
system "./configure", "--disable-debug", "--disable-dependency-tracking",
"--prefix=#{prefix}"
system "make install"
end
end