aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Formula/gcal.rb
blob: 7d3d0c19ec8315e74dc2f479c6a98d9556858f0e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
require 'formula'

class Gcal < Formula
  url 'http://ftpmirror.gnu.org/gcal/gcal-3.6.1.tar.gz'
  homepage 'http://www.gnu.org/software/gcal/'
  md5 'a89e96db054a8b23ff6cd97049527a4f'

  def install
    system "./configure", "--prefix=#{prefix}"
    system "make install"
  end
end