homebrew-core/Formula/gcal.rb
Jack Nagel fa3d89a7c0 Use automatic mirror selection for GNU downloads
It seems that the main GNU download site has issues in some places
outside the U.S., so we'll use the provided "ftpmirror.gnu.org" to pick
a nearby mirror.

Signed-off-by: Jack Nagel <jacknagel@gmail.com>
2011-09-12 15:08:20 -05:00

12 lines
282 B
Ruby

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