czmq: remove options
This commit is contained in:
parent
7eafa3e699
commit
6abac04b3e
1 changed files with 1 additions and 6 deletions
|
@ -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"
|
||||
|
|
Loading…
Reference in a new issue