homebrew-core/Formula/gnu-smalltalk.rb
Viktor Szakats 60e81a0a29 gnu-smalltalk: switch to http from ftp for devel url
Closes Homebrew/homebrew#49211.

Signed-off-by: Mike McQuaid <mike@mikemcquaid.com>
2016-02-16 09:59:31 +00:00

81 lines
2.5 KiB
Ruby

class GnuSmalltalk < Formula
desc "GNU Smalltalk interpreter and image"
homepage "http://smalltalk.gnu.org/"
url "http://ftpmirror.gnu.org/smalltalk/smalltalk-3.2.5.tar.xz"
mirror "https://ftp.gnu.org/gnu/smalltalk/smalltalk-3.2.5.tar.xz"
sha256 "819a15f7ba8a1b55f5f60b9c9a58badd6f6153b3f987b70e7b167e7755d65acc"
revision 2
head "https://github.com/bonzini/smalltalk.git"
bottle do
sha256 "06731a07d89cbffdac00bd04e417de8633a8090f5a1083dbc500fc65d7310c5f" => :el_capitan
sha256 "bd20234afab424d9e9bdeb4d2088b84e19ffd475bff510a56714cffbffbe0d38" => :yosemite
sha256 "ab126ae6c45c5ce3db0d6bfd1bb1689ae1777382a1d19dfeeb432d489f201d04" => :mavericks
end
devel do
url "http://alpha.gnu.org/gnu/smalltalk/smalltalk-3.2.90.tar.gz"
mirror "https://www.mirrorservice.org/sites/alpha.gnu.org/gnu/smalltalk/smalltalk-3.2.90.tar.gz"
sha256 "aa6cab17841f999c9217cdccd185a74e42fc6a7fc17139120dad8815bdff137c"
end
option "with-test", "Verify the build with make check (this may hang)"
option "with-tcltk", "Build the Tcl/Tk module that requires X11"
deprecated_option "tests" => "with-test"
deprecated_option "with-tests" => "with-test"
deprecated_option "tcltk" => "with-tcltk"
depends_on "autoconf" => :build
depends_on "automake" => :build
depends_on "libtool" => :run
depends_on "pkg-config" => :build
depends_on "gawk" => :build
depends_on "readline"
depends_on "gnutls"
depends_on "libffi" => :recommended
depends_on "libsigsegv" => :recommended
depends_on "glew" => :optional
depends_on :x11 if build.with? "tcltk"
fails_with :llvm do
build 2334
cause "Codegen problems with LLVM"
end
def install
ENV.m32 unless MacOS.prefer_64_bit?
args = %W[
--disable-debug
--disable-dependency-tracking
--prefix=#{prefix}
--with-lispdir=#{share}/emacs/site-lisp/#{name}
--disable-gtk
--with-readline=#{Formula["readline"].opt_lib}
]
if build.without? "tcltk"
args << "--without-tcl" << "--without-tk" << "--without-x"
end
# disable generational gc in 32-bit and if libsigsegv is absent
if !MacOS.prefer_64_bit? || build.without?("libsigsegv")
args << "--disable-generational-gc"
end
system "autoreconf", "-ivf"
system "./configure", *args
system "make"
system "make", "-j1", "check" if build.with? "test"
system "make", "install"
end
test do
path = testpath/"test.gst"
path.write "0 to: 9 do: [ :n | n display ]\n"
assert_match /0123456789/, shell_output("#{bin}/gst #{path}")
end
end