diff options
| -rw-r--r-- | Library/Formula/google-sparsehash.rb | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/Library/Formula/google-sparsehash.rb b/Library/Formula/google-sparsehash.rb new file mode 100644 index 000000000..b4484d580 --- /dev/null +++ b/Library/Formula/google-sparsehash.rb @@ -0,0 +1,13 @@ +require 'formula' + +class GoogleSparsehash <Formula + url 'http://google-sparsehash.googlecode.com/files/sparsehash-1.7.tar.gz' + homepage 'http://code.google.com/p/google-sparsehash/' + sha1 'b9355e6aa2564b6a2d9fc2e1ac3f9773dbca8f59' + + def install + system "./configure", "--disable-debug", "--disable-dependency-tracking", "--prefix=#{prefix}" + system "make check" + system "make install" + end +end |
