diff options
| author | Adam Vandenberg | 2010-03-22 15:56:32 -0700 | 
|---|---|---|
| committer | Adam Vandenberg | 2010-03-22 15:56:32 -0700 | 
| commit | 58ab8284896be2cba138424073971c5adb7b86ac (patch) | |
| tree | 6dfd5a6ace1d0b0f57260f46d5108da7d33f76ad /Library/Formula/msgpack.rb | |
| parent | c5a92afc0193ab57ba8293483c3220db446ef0bb (diff) | |
| download | homebrew-58ab8284896be2cba138424073971c5adb7b86ac.tar.bz2 | |
Add msgpack library.
Diffstat (limited to 'Library/Formula/msgpack.rb')
| -rw-r--r-- | Library/Formula/msgpack.rb | 12 | 
1 files changed, 12 insertions, 0 deletions
| diff --git a/Library/Formula/msgpack.rb b/Library/Formula/msgpack.rb new file mode 100644 index 000000000..f7ece54ce --- /dev/null +++ b/Library/Formula/msgpack.rb @@ -0,0 +1,12 @@ +require 'formula' + +class Msgpack <Formula +  url 'http://downloads.sourceforge.net/project/msgpack/msgpack/cpp/msgpack-0.4.3.tar.gz' +  homepage 'http://msgpack.sourceforge.net/' +  md5 'ae55b5a48221fabc587a9ff2b0b6106e' + +  def install +    system "./configure", "--disable-debug", "--disable-dependency-tracking", "--prefix=#{prefix}" +    system "make install" +  end +end | 
