2013-07-01 14:17:10 +00:00
|
|
|
require 'formula'
|
|
|
|
|
|
|
|
class Liblacewing < Formula
|
|
|
|
homepage 'http://lacewing-project.org/'
|
|
|
|
head 'https://github.com/udp/lacewing.git'
|
2013-11-09 18:39:24 +00:00
|
|
|
url 'https://github.com/udp/lacewing/archive/0.5.4.tar.gz'
|
|
|
|
sha1 '078486a4dcd6ce33c2c881954c5dc82843411ac9'
|
2014-08-22 14:08:15 +00:00
|
|
|
revision 1
|
2013-07-01 14:17:10 +00:00
|
|
|
|
2014-08-22 18:04:05 +00:00
|
|
|
bottle do
|
|
|
|
cellar :any
|
|
|
|
sha1 "581217cd2f70273475b3ea50ab2faafbcf6898f0" => :mavericks
|
|
|
|
sha1 "620f9e799192d74e49a5a2098d0661b69b3f3a14" => :mountain_lion
|
|
|
|
sha1 "39c2c5dfd392344bba96f177b8afc79ab6fc73b8" => :lion
|
|
|
|
end
|
|
|
|
|
2013-07-01 14:17:10 +00:00
|
|
|
# Use a newer OpenSSL to get SPDY support
|
|
|
|
depends_on 'openssl'
|
|
|
|
|
|
|
|
def install
|
|
|
|
system "./configure", "--prefix=#{prefix}"
|
|
|
|
system "make"
|
|
|
|
system "make install"
|
|
|
|
end
|
|
|
|
end
|