diff options
| author | Fabio Utzig | 2010-06-27 16:18:19 -0300 |
|---|---|---|
| committer | Adam Vandenberg | 2010-06-28 09:42:37 -0700 |
| commit | b57af716c43a293b23a17d4bb67e420df34bc9c8 (patch) | |
| tree | 19b5478bbfc40b1cd3ed7d38091ced0158520d9b | |
| parent | e9cc19ac7926d5780eae9273efc0a105ac301206 (diff) | |
| download | homebrew-b57af716c43a293b23a17d4bb67e420df34bc9c8.tar.bz2 | |
Added formula for gputils
Signed-off-by: Adam Vandenberg <flangy@gmail.com>
| -rw-r--r-- | Library/Formula/gputils.rb | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/Library/Formula/gputils.rb b/Library/Formula/gputils.rb new file mode 100644 index 000000000..20006d9be --- /dev/null +++ b/Library/Formula/gputils.rb @@ -0,0 +1,12 @@ +require 'formula' + +class Gputils <Formula + url 'http://downloads.sourceforge.net/project/gputils/gputils/0.13.7/gputils-0.13.7.tar.gz' + homepage 'http://gputils.sourceforge.net/' + md5 '242e33919e9c318d6ac58b6db291d20e' + + def install + system "./configure", "--prefix=#{prefix}", "--disable-dependency-tracking" + system "make install" + end +end |
