aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Formula/gnu-time.rb
blob: 79bb2477da88359abc8e97571571a6875494c2ad (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
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