diff options
| author | Brett Koonce | 2014-05-19 22:55:29 -0700 |
|---|---|---|
| committer | Brett Koonce | 2014-05-20 00:04:34 -0700 |
| commit | 04adf6c580e76e72307626aa23a0a17b390ff90c (patch) | |
| tree | 60394d7ca8ef81614bf3c23272b24952bf486f07 /Library/Formula | |
| parent | f63ea6842671369b8cf2e088b769f123c8ae5eaf (diff) | |
| download | homebrew-04adf6c580e76e72307626aa23a0a17b390ff90c.tar.bz2 | |
spdylay 1.2.4
Diffstat (limited to 'Library/Formula')
| -rw-r--r-- | Library/Formula/spdylay.rb | 32 |
1 files changed, 16 insertions, 16 deletions
diff --git a/Library/Formula/spdylay.rb b/Library/Formula/spdylay.rb index 56c839a29..741c754cb 100644 --- a/Library/Formula/spdylay.rb +++ b/Library/Formula/spdylay.rb @@ -1,25 +1,25 @@ -require 'formula' +require "formula" class Spdylay < Formula - homepage 'https://github.com/tatsuhiro-t/spdylay' - url 'https://github.com/tatsuhiro-t/spdylay/archive/v1.2.3.tar.gz' - sha1 '96a04068ca0b5df10e37f8d60379b2cb9c5f67d6' + homepage "https://github.com/tatsuhiro-t/spdylay" + url "https://github.com/tatsuhiro-t/spdylay/archive/v1.2.4.tar.gz" + sha1 "5bf481fa4859029806d886a31e85b999aee3a3f0" - depends_on 'autoconf' => :build - depends_on 'automake' => :build - depends_on 'libtool' => :build - depends_on 'pkg-config' => :build - depends_on 'libevent' => :recommended - depends_on 'libxml2' - depends_on 'openssl' + depends_on "autoconf" => :build + depends_on "automake" => :build + depends_on "libtool" => :build + depends_on "pkg-config" => :build + depends_on "libevent" => :recommended + depends_on "libxml2" + depends_on "openssl" def install - system 'autoreconf -i' - system 'automake' - system 'autoconf' + system "autoreconf -i" + system "automake" + system "autoconf" - ENV['ZLIB_CFLAGS'] = '-I/usr/include' - ENV['ZLIB_LIBS'] = '-L/usr/lib -lz' + ENV["ZLIB_CFLAGS"] = "-I/usr/include" + ENV["ZLIB_LIBS"] = "-L/usr/lib -lz" system "./configure", "--disable-dependency-tracking", "--prefix=#{prefix}" |
