7bd947eb0b
* Use new "url" features * Use keg_only DSL * Use "skip_clean :all" DSL * Whitespace and style cleanups * Make bash invocations less silly * Use new man2-man8 helpers * Remove "FileUtils." since it is included in Formula * Use real names for deps instead of aliases * ENV.x11 now updates path, so remove that from individual brews
14 lines
373 B
Ruby
14 lines
373 B
Ruby
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}"
|
|
system "make install"
|
|
end
|
|
end
|