diff options
| author | Lon Baker | 2009-12-11 09:56:53 -0800 | 
|---|---|---|
| committer | Max Howell | 2009-12-22 03:28:59 +0000 | 
| commit | a6137d225ad9b63841acd9a8c0d422fb70cacbe0 (patch) | |
| tree | 934f5e395c09177c058de342d9a752dbac5fff90 /Library/Formula/haproxy.rb | |
| parent | 8b0d1802d1274e685231703e31ec6df8ac9cb957 (diff) | |
| download | homebrew-a6137d225ad9b63841acd9a8c0d422fb70cacbe0.tar.bz2 | |
Add haproxy 1.3.22 formula
Diffstat (limited to 'Library/Formula/haproxy.rb')
| -rw-r--r-- | Library/Formula/haproxy.rb | 13 | 
1 files changed, 13 insertions, 0 deletions
| diff --git a/Library/Formula/haproxy.rb b/Library/Formula/haproxy.rb new file mode 100644 index 000000000..c8b058933 --- /dev/null +++ b/Library/Formula/haproxy.rb @@ -0,0 +1,13 @@ +require 'formula' + +class Haproxy <Formula +  url 'http://haproxy.1wt.eu/download/1.3/src/haproxy-1.3.22.tar.gz' +  md5 'b84e0935cfea99eda43645d53bb82367' +  homepage 'http://haproxy.1wt.eu' + +  def install +    # We build generic since the Makefile.osx doesn't appear to work +    system "make", "TARGET=generic" +    system "make install" +  end +end | 
