2013-02-24 23:56:41 +00:00
|
|
|
require 'formula'
|
|
|
|
|
|
|
|
class Spdylay < Formula
|
|
|
|
homepage 'https://github.com/tatsuhiro-t/spdylay'
|
2013-09-16 22:06:19 +00:00
|
|
|
url 'https://github.com/tatsuhiro-t/spdylay/archive/release-1.1.0.tar.gz'
|
|
|
|
sha1 'b230b9fd9c32c2573cf6d99d2e756208a0c09e49'
|
2013-02-24 23:56:41 +00:00
|
|
|
|
|
|
|
depends_on 'autoconf' => :build
|
|
|
|
depends_on 'automake' => :build
|
|
|
|
depends_on 'libtool' => :build
|
|
|
|
depends_on 'pkg-config' => :build
|
|
|
|
depends_on 'libxml2'
|
|
|
|
depends_on 'openssl'
|
|
|
|
|
|
|
|
def install
|
|
|
|
system 'autoreconf -i'
|
|
|
|
system 'automake'
|
|
|
|
system 'autoconf'
|
|
|
|
|
|
|
|
ENV['ZLIB_CFLAGS'] = '-I/usr/include'
|
|
|
|
ENV['ZLIB_LIBS'] = '-L/usr/lib -lz'
|
|
|
|
|
2013-05-10 02:39:59 +00:00
|
|
|
system "./configure", "--disable-dependency-tracking",
|
2013-02-24 23:56:41 +00:00
|
|
|
"--prefix=#{prefix}"
|
|
|
|
system "make install"
|
|
|
|
end
|
|
|
|
|
|
|
|
def test
|
|
|
|
system "#{bin}/spdycat", "-ns", "https://www.google.com"
|
|
|
|
end
|
|
|
|
end
|