homebrew-core/Formula/wslay.rb
2018-06-08 10:22:23 -07:00

34 lines
1.2 KiB
Ruby

class Wslay < Formula
desc "C websocket library"
homepage "https://wslay.sourceforge.io/"
url "https://github.com/tatsuhiro-t/wslay/releases/download/release-1.1.0/wslay-1.1.0.tar.xz"
sha256 "0d82d247b847cc08e798ee2f28ee22b331d54e5900b3e1bef184945770185e17"
bottle do
cellar :any
sha256 "f2537bdaf7a5fd083e21f034fc6fb18ffe36f7dc16b589b8ef1a29cfbfd58286" => :high_sierra
sha256 "004c25402d835de2c7c067ee04f64c7cc84207f47483f2b1fcbbcd8c2e3f3a59" => :sierra
sha256 "518238850151cd6a73a2ac1896b671105bf6160ce043ba2afbe62b71816267b2" => :el_capitan
end
head do
url "https://github.com/tatsuhiro-t/wslay.git"
depends_on "automake" => :build
depends_on "autoconf" => :build
depends_on "libtool" => :build
end
option "without-docs", "Don't generate or install documentation"
depends_on "sphinx-doc" => :build if build.with? "docs"
depends_on "cunit" => :build
depends_on "pkg-config" => :build
def install
system "autoreconf", "-fvi" if build.head?
system "./configure", "--prefix=#{prefix}", "--disable-dependency-tracking", "--disable-silent-rules"
system "make", "check"
system "make", "install"
end
end