b8b896789a
Closes Homebrew/homebrew#11767. Signed-off-by: Jack Nagel <jacknagel@gmail.com>
38 lines
1.1 KiB
Ruby
38 lines
1.1 KiB
Ruby
require 'formula'
|
|
|
|
class Guile < Formula
|
|
homepage 'http://www.gnu.org/software/guile/'
|
|
url 'http://ftpmirror.gnu.org/guile/guile-1.8.7.tar.gz'
|
|
mirror 'http://ftp.gnu.org/gnu/guile/guile-1.8.7.tar.gz'
|
|
sha1 '24cd2f06439c76d41d982a7384fe8a0fe5313b54'
|
|
|
|
devel do
|
|
url 'http://ftpmirror.gnu.org/guile/guile-2.0.5.tar.gz'
|
|
mirror 'http://ftp.gnu.org/gnu/guile/guile-2.0.5.tar.gz'
|
|
sha1 '0cf94962ab637975bf2ad00afa15638dcc67408f'
|
|
end
|
|
|
|
depends_on 'pkg-config' => :build
|
|
depends_on 'libffi'
|
|
depends_on 'libunistring'
|
|
depends_on 'bdw-gc'
|
|
depends_on 'gmp'
|
|
|
|
# GNU Readline is required; libedit won't work.
|
|
depends_on 'readline'
|
|
|
|
fails_with :llvm do
|
|
build 2336
|
|
cause "Segfaults during compilation"
|
|
end
|
|
|
|
def install
|
|
system "./configure", "--disable-dependency-tracking",
|
|
"--prefix=#{prefix}",
|
|
"--with-libreadline-prefix=#{Formula.factory('readline').prefix}"
|
|
system "make install"
|
|
|
|
# A really messed up workaround required on OS X --mkhl
|
|
lib.cd { Dir["*.dylib"].each {|p| ln_sf p, File.basename(p, ".dylib")+".so" }}
|
|
end
|
|
end
|