aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Formula/gnu-time.rb
blob: 91b49a07ae3d3f0fbbbb6f65839b446b70f7f827 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
require 'formula'

class GnuTime < Formula
  url '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