homebrew-core/Formula/gnu-time.rb
Jack Nagel 83fcafb5aa Add mirrors for GNU formulae
Signed-off-by: Jack Nagel <jacknagel@gmail.com>
2011-11-30 12:56:07 -06:00

16 lines
475 B
Ruby

require 'formula'
class GnuTime < Formula
url 'http://ftpmirror.gnu.org/time/time-1.7.tar.gz'
mirror 'http://ftp.gnu.org/gnu/time/time-1.7.tar.gz'
homepage 'http://www.gnu.org/software/time/'
md5 'e38d2b8b34b1ca259cf7b053caac32b3'
def install
system "./configure", "--program-prefix=g",
"--prefix=#{prefix}",
"--mandir=#{man}",
"--info=#{info}"
system "make install"
end
end