czmq: remove options

This commit is contained in:
FX Coudert 2019-01-13 18:56:30 +01:00
parent 7eafa3e699
commit 6abac04b3e

View file

@ -20,8 +20,6 @@ class Czmq < Formula
depends_on "libtool" => :build
end
option "with-drafts", "Build and install draft classes and methods"
depends_on "asciidoc" => :build
depends_on "pkg-config" => :build
depends_on "xmlto" => :build
@ -30,11 +28,8 @@ class Czmq < Formula
def install
ENV["XML_CATALOG_FILES"] = "#{etc}/xml/catalog"
args = ["--disable-dependency-tracking", "--prefix=#{prefix}"]
args << "--enable-drafts" if build.with? "drafts"
system "./autogen.sh" if build.head?
system "./configure", *args
system "./configure", "--disable-dependency-tracking", "--prefix=#{prefix}"
system "make"
system "make", "ZSYS_INTERFACE=lo0", "check-verbose"
system "make", "install"