liblacewing 0.5.2

liblacewing is a cross-platform, high-level networking library

Closes Homebrew/homebrew#20940.

Signed-off-by: Adam Vandenberg <flangy@gmail.com>
master
Andos 2013-07-01 16:17:10 +02:00 committed by Adam Vandenberg
parent 8cca4f3592
commit 16e5baa314
1 changed files with 17 additions and 0 deletions

17
Formula/liblacewing.rb Normal file
View File

@ -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