fa3d89a7c0
It seems that the main GNU download site has issues in some places outside the U.S., so we'll use the provided "ftpmirror.gnu.org" to pick a nearby mirror. Signed-off-by: Jack Nagel <jacknagel@gmail.com>
34 lines
994 B
Ruby
34 lines
994 B
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'
|
|
head 'http://ftpmirror.gnu.org/guile/guile-2.0.2.tar.gz'
|
|
|
|
if ARGV.build_head?
|
|
sha1 '1943fd22417ce1e51babbdcd7681e66a794a8da3'
|
|
else
|
|
sha1 '24cd2f06439c76d41d982a7384fe8a0fe5313b54'
|
|
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 "Segfaults during compilation."
|
|
|
|
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
|