ekg2: remove options

This commit is contained in:
FX Coudert 2019-01-04 11:19:48 +01:00
parent bfcdf74b04
commit c3fd5e5083

View file

@ -17,7 +17,6 @@ class Ekg2 < Formula
depends_on "pkg-config" => :build
depends_on "openssl"
depends_on "readline"
depends_on "libgadu" => :optional
# Fix the build on OS X 10.9+
# http://bugs.ekg2.org/issues/152
@ -30,15 +29,14 @@ class Ekg2 < Formula
--disable-debug
--disable-dependency-tracking
--prefix=#{prefix}
--without-python
--without-perl
--enable-unicode
--with-readline=#{readline}
--without-gtk
--enable-unicode
--without-libgadu
--without-perl
--without-python
]
args << (build.with?("libgadu") ? "--with-libgadu" : "--without-libgadu")
system "./configure", *args
system "make", "install"
end