gnu-smalltalk: use --with-test

This commit is contained in:
Baptiste Fontaine 2015-12-08 11:23:43 +01:00
parent ef2fdc2876
commit ae02429d5b

View file

@ -20,10 +20,11 @@ class GnuSmalltalk < Formula
sha256 "aa6cab17841f999c9217cdccd185a74e42fc6a7fc17139120dad8815bdff137c" sha256 "aa6cab17841f999c9217cdccd185a74e42fc6a7fc17139120dad8815bdff137c"
end end
option "with-tests", "Verify the build with make check (this may hang)" option "with-test", "Verify the build with make check (this may hang)"
option "with-tcltk", "Build the Tcl/Tk module that requires X11" option "with-tcltk", "Build the Tcl/Tk module that requires X11"
deprecated_option "tests" => "with-tests" deprecated_option "tests" => "with-test"
deprecated_option "with-tests" => "with-test"
deprecated_option "tcltk" => "with-tcltk" deprecated_option "tcltk" => "with-tcltk"
depends_on "autoconf" => :build depends_on "autoconf" => :build
@ -66,7 +67,7 @@ class GnuSmalltalk < Formula
system "autoreconf", "-ivf" system "autoreconf", "-ivf"
system "./configure", *args system "./configure", *args
system "make" system "make"
system "make", "-j1", "check" if build.with? "tests" system "make", "-j1", "check" if build.with? "test"
system "make", "install" system "make", "install"
end end