aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Formula/remind.rb
blob: 3cf191175d851308618cbbdb794335fcea1d04ca (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
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