homebrew-core/Formula/gnu-typist.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
349 B
Ruby

require 'formula'
class GnuTypist < Formula
url 'http://ftpmirror.gnu.org/gtypist/gtypist-2.8.3.tar.bz2'
homepage 'http://www.gnu.org/software/gtypist/'
md5 '43be4b69315a202cccfed0efd011d66c'
def install
system "./configure", "--disable-debug", "--disable-dependency-tracking", "--prefix=#{prefix}"
system "make install"
end
end