diff options
| author | Andos | 2013-07-01 16:17:10 +0200 |
|---|---|---|
| committer | Adam Vandenberg | 2013-09-13 21:20:57 -0700 |
| commit | 9ec41253ac8d6b9cf9706a6c1db31dd5db932a8d (patch) | |
| tree | 9863fdc9ee0cf7f542c376487c39eb9217f97087 /Library/Formula | |
| parent | 122fb123e5578cb8503830b605bead884ddb79cb (diff) | |
| download | homebrew-9ec41253ac8d6b9cf9706a6c1db31dd5db932a8d.tar.bz2 | |
liblacewing 0.5.2
liblacewing is a cross-platform, high-level networking library
Closes #20940.
Signed-off-by: Adam Vandenberg <flangy@gmail.com>
Diffstat (limited to 'Library/Formula')
| -rw-r--r-- | Library/Formula/liblacewing.rb | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/Library/Formula/liblacewing.rb b/Library/Formula/liblacewing.rb new file mode 100644 index 000000000..e0afc7494 --- /dev/null +++ b/Library/Formula/liblacewing.rb @@ -0,0 +1,17 @@ +require 'formula' + +class Liblacewing < Formula + homepage 'http://lacewing-project.org/' + head 'https://github.com/udp/lacewing.git' + url 'https://github.com/udp/lacewing/archive/0.5.2.tar.gz' + sha1 '6b0fe0ac3d301308f6b42ef0f2ab4f31d10dcc73' + + # Use a newer OpenSSL to get SPDY support + depends_on 'openssl' + + def install + system "./configure", "--prefix=#{prefix}" + system "make" + system "make install" + end +end |
