blob: 28124f98c68d15de12f44466f9036ea976915506 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
require 'formula'
class GnuTime < Formula
url 'http://ftpmirror.gnu.org/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
|