arabica: remove options

This commit is contained in:
FX Coudert 2018-09-13 12:07:24 +02:00
parent 2c77aadb62
commit 51105a99ed

View file

@ -16,18 +16,16 @@ class Arabica < Formula
sha256 "5d247d4d5819106404bc7091e3b6141b4d298c77636bee39bfc524a3c5481e7f" => :mavericks
end
option "without-test", "Skip compile-time make checks (Not Recommended)"
depends_on "autoconf" => :build
depends_on "automake" => :build
depends_on "libtool" => :build
depends_on "boost" => :recommended
depends_on "boost"
def install
system "autoreconf", "-fvi"
system "./configure", "--disable-dependency-tracking", "--prefix=#{prefix}"
system "make"
system "make", "check" if build.with? "test"
system "make", "check"
system "make", "install"
end