From ea50d6fb82c2cd1851cc49f554912f4675734a87 Mon Sep 17 00:00:00 2001 From: FX Coudert Date: Tue, 18 Sep 2018 22:16:46 +0200 Subject: [PATCH] ncdc: remove options --- Formula/ncdc.rb | 12 +----------- 1 file changed, 1 insertion(+), 11 deletions(-) diff --git a/Formula/ncdc.rb b/Formula/ncdc.rb index 8438b90951..4ef13ac4e1 100644 --- a/Formula/ncdc.rb +++ b/Formula/ncdc.rb @@ -20,24 +20,14 @@ class Ncdc < Formula depends_on "automake" => :build end - option "with-geoip", "Build with geoip support" - depends_on "pkg-config" => :build depends_on "glib" depends_on "gnutls" depends_on "sqlite" - depends_on "geoip" => :optional def install system "autoreconf", "-ivf" if build.head? - - args = [ - "--disable-dependency-tracking", - "--prefix=#{prefix}", - ] - args << "--with-geoip" if build.with? "geoip" - - system "./configure", *args + system "./configure", "--disable-dependency-tracking", "--prefix=#{prefix}" system "make", "install" end