a2bafa27f8
Kills ssl2 from OpenSSL. This PR relates to Homebrew/homebrew#31745. Force recompiles everything that relies on OpenSSL from the master branch to enforce the new OpenSSL no-ssl2 rule.
18 lines
442 B
Ruby
18 lines
442 B
Ruby
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.4.tar.gz'
|
|
sha1 '078486a4dcd6ce33c2c881954c5dc82843411ac9'
|
|
revision 1
|
|
|
|
# Use a newer OpenSSL to get SPDY support
|
|
depends_on 'openssl'
|
|
|
|
def install
|
|
system "./configure", "--prefix=#{prefix}"
|
|
system "make"
|
|
system "make install"
|
|
end
|
|
end
|