2009-10-15 08:07:12 +00:00
|
|
|
require 'formula'
|
2009-09-19 18:02:03 +00:00
|
|
|
|
2011-03-10 05:11:03 +00:00
|
|
|
class Guile < Formula
|
2010-02-16 14:18:32 +00:00
|
|
|
homepage 'http://www.gnu.org/software/guile/'
|
2014-03-23 20:18:14 +00:00
|
|
|
url 'http://ftpmirror.gnu.org/guile/guile-2.0.11.tar.gz'
|
|
|
|
mirror 'http://ftp.gnu.org/gnu/guile/guile-2.0.11.tar.gz'
|
|
|
|
sha1 '3cdd1c4956414bffadea13e5a1ca08949016a802'
|
2009-09-19 18:02:03 +00:00
|
|
|
|
2014-05-23 17:06:11 +00:00
|
|
|
bottle do
|
|
|
|
sha1 "3a75eeaa7a1637dd9876636963d8f02a6ffb23bf" => :mavericks
|
|
|
|
sha1 "6828352dd9205c9fa42701f14d7808604b7b23e1" => :mountain_lion
|
|
|
|
sha1 "e223036d6e1e238802a421d266881ad5ddf14c16" => :lion
|
|
|
|
end
|
|
|
|
|
2013-09-22 00:27:25 +00:00
|
|
|
head do
|
2013-11-06 04:06:20 +00:00
|
|
|
url 'http://git.sv.gnu.org/r/guile.git'
|
2013-04-07 06:29:12 +00:00
|
|
|
|
2013-11-13 17:01:29 +00:00
|
|
|
depends_on 'autoconf' => :build
|
2013-04-07 06:29:12 +00:00
|
|
|
depends_on 'automake' => :build
|
|
|
|
depends_on 'gettext' => :build
|
|
|
|
end
|
|
|
|
|
2010-09-19 17:21:57 +00:00
|
|
|
depends_on 'pkg-config' => :build
|
2014-05-23 17:49:35 +00:00
|
|
|
depends_on 'libtool' => :run
|
2010-04-30 16:03:46 +00:00
|
|
|
depends_on 'libffi'
|
2009-09-19 18:02:03 +00:00
|
|
|
depends_on 'libunistring'
|
|
|
|
depends_on 'bdw-gc'
|
|
|
|
depends_on 'gmp'
|
2012-11-11 03:12:26 +00:00
|
|
|
depends_on 'readline'
|
2009-09-19 18:02:03 +00:00
|
|
|
|
2012-03-18 20:33:24 +00:00
|
|
|
fails_with :llvm do
|
|
|
|
build 2336
|
|
|
|
cause "Segfaults during compilation"
|
|
|
|
end
|
2011-03-22 16:55:25 +00:00
|
|
|
|
2013-02-03 22:35:37 +00:00
|
|
|
fails_with :clang do
|
|
|
|
build 211
|
|
|
|
cause "Segfaults during compilation"
|
2013-10-08 20:41:05 +00:00
|
|
|
end
|
2013-02-03 22:35:37 +00:00
|
|
|
|
2011-03-21 21:24:22 +00:00
|
|
|
def install
|
2013-04-07 06:29:12 +00:00
|
|
|
system './autogen.sh' if build.head?
|
|
|
|
|
2010-02-16 14:18:32 +00:00
|
|
|
system "./configure", "--disable-dependency-tracking",
|
|
|
|
"--prefix=#{prefix}",
|
2014-02-25 14:37:27 +00:00
|
|
|
"--with-libreadline-prefix=#{Formula["readline"].prefix}",
|
|
|
|
"--with-libgmp-prefix=#{Formula["gmp"].prefix}"
|
2009-09-19 18:02:03 +00:00
|
|
|
system "make install"
|
2010-02-16 14:18:32 +00:00
|
|
|
|
|
|
|
# A really messed up workaround required on OS X --mkhl
|
2014-03-25 05:47:14 +00:00
|
|
|
Pathname.glob("#{lib}/*.dylib") do |dylib|
|
|
|
|
lib.install_symlink dylib.basename => "#{dylib.basename(".dylib")}.so"
|
|
|
|
end
|
2014-05-09 15:35:30 +00:00
|
|
|
|
|
|
|
(share/"gdb/auto-load").install Dir["#{lib}/*-gdb.scm"]
|
2009-09-19 18:02:03 +00:00
|
|
|
end
|
2014-01-19 22:04:02 +00:00
|
|
|
|
|
|
|
test do
|
|
|
|
hello = testpath/'hello.scm'
|
|
|
|
hello.write <<-EOS.undent
|
|
|
|
(display "Hello World")
|
|
|
|
(newline)
|
|
|
|
EOS
|
|
|
|
|
|
|
|
ENV['GUILE_AUTO_COMPILE'] = '0'
|
|
|
|
|
|
|
|
system bin/'guile', hello
|
|
|
|
end
|
2010-02-16 14:18:32 +00:00
|
|
|
end
|