clisp version 2.49 for OS X
The formula for clisp was recently updated to version 2.49.
To install clisp on your Mac, open your Terminal application and run the following commands;
brew update brew install clisp
The updated formula is as follows:
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55
require 'formula' class Clisp < Formula url 'http://ftp.gnu.org/pub/gnu/clisp/release/2.49/clisp-2.49.tar.bz2' homepage 'http://clisp.cons.org/' md5 '1962b99d5e530390ec3829236d168649' depends_on 'libiconv' depends_on 'libsigsegv' depends_on 'readline' skip_clean :all # otherwise abort trap fails_with_llvm "Fails during configure with LLVM GCC from XCode 4 on Snow Leopard" def install ENV.j1 # This build isn't parallel safe. # Clisp requires to select word size explicitly this way, # set it in CFLAGS won't work. ENV['CC'] = "#{ENV.cc} -m#{MacOS.prefer_64_bit? ? 64 : 32}" system "./configure", "--prefix=#{prefix}", "--with-readline=yes" cd "src" do # Multiple -O options will be in the generated Makefile, # make Homebrew's the last such option so it's effective. inreplace "Makefile" do |s| cf = s.get_make_var("CFLAGS") cf.gsub! ENV['CFLAGS'], '' cf += ' '+ENV['CFLAGS'] s.change_make_var! 'CFLAGS', cf end # The ulimit must be set, otherwise `make` will fail and tell you to do so system "ulimit -s 16384 && make" if MacOS.lion? opoo "`make check` fails on Lion, so we are skipping it." puts "But it probably means there will be other issues too." puts "Please take them upstream to the clisp project itself." else # Considering the complexity of this package, a self-check is highly recommended. system "make check" end system "make install" end end def test system "clisp --version" end end
This package, clisp, depends on;
See which packages depend on clisp.