diff options
| author | Jordi Romero | 2010-03-25 15:27:22 +0100 |
|---|---|---|
| committer | Adam Vandenberg | 2010-06-15 21:17:21 -0700 |
| commit | 3f326158917a04e0d03aa9792fb9331082dd88f3 (patch) | |
| tree | 9614e981eda86dac8fec7f130a3b2aa35189cc28 /Library/Formula | |
| parent | 51bf3c96263b766fe4539b9108463a37799b30d2 (diff) | |
| download | homebrew-3f326158917a04e0d03aa9792fb9331082dd88f3.tar.bz2 | |
Adding gnu-time Formula
Signed-off-by: Adam Vandenberg <flangy@gmail.com>
Diffstat (limited to 'Library/Formula')
| -rw-r--r-- | Library/Formula/gnu-time.rb | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/Library/Formula/gnu-time.rb b/Library/Formula/gnu-time.rb new file mode 100644 index 000000000..b8a0929ea --- /dev/null +++ b/Library/Formula/gnu-time.rb @@ -0,0 +1,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", + "--prefix=#{prefix}", + "--program-prefix=g", + "--mandir=#{man}" + system "make install" + end +end |
