53 lines
1.9 KiB
Ruby
53 lines
1.9 KiB
Ruby
# Xcode 4.3 provides the Apple libtool.
|
|
# This is not the same so as a result we must install this as glibtool.
|
|
|
|
class Libtool < Formula
|
|
desc "Generic library support script"
|
|
homepage "https://www.gnu.org/software/libtool/"
|
|
url "https://ftpmirror.gnu.org/libtool/libtool-2.4.6.tar.xz"
|
|
mirror "https://ftp.gnu.org/gnu/libtool/libtool-2.4.6.tar.xz"
|
|
sha256 "7c87a8c2c8c0fc9cd5019e402bed4292462d00a718a7cd5f11218153bf28b26f"
|
|
|
|
revision 1
|
|
|
|
bottle do
|
|
cellar :any
|
|
sha256 "78a1f6c6644eae01eb5c204ef705f7e48721a0fe8ece492c10c84791061885db" => :sierra
|
|
sha256 "b7651d0a082e2f103f03ca3a5ed831e2ff5655ccc1044ac0452e4d1825475a35" => :el_capitan
|
|
sha256 "0eb206c0f51e8ce2e3e9340b5ce3c8ecef961ae6696f676073327a7ac04e5c0b" => :yosemite
|
|
sha256 "2e51ef82ef2bd1ad9d921a9016b9e5d7fa82d131849e2c32a3c90daa119e2eda" => :mavericks
|
|
end
|
|
|
|
keg_only :provided_until_xcode43
|
|
|
|
option :universal
|
|
|
|
def install
|
|
ENV.universal_binary if build.universal?
|
|
ENV["SED"] = "sed" # prevent libtool from hardcoding sed path from superenv
|
|
system "./configure", "--disable-dependency-tracking",
|
|
"--prefix=#{prefix}",
|
|
"--program-prefix=g",
|
|
"--enable-ltdl-install"
|
|
system "make", "install"
|
|
end
|
|
|
|
def caveats; <<-EOS.undent
|
|
In order to prevent conflicts with Apple's own libtool we have prepended a "g"
|
|
so, you have instead: glibtool and glibtoolize.
|
|
EOS
|
|
end
|
|
|
|
test do
|
|
system "#{bin}/glibtool", "execute", "/usr/bin/true"
|
|
(testpath/"hello.c").write <<-EOS
|
|
#include <stdio.h>
|
|
int main() { puts("Hello, world!"); return 0; }
|
|
EOS
|
|
system bin/"glibtool", "--mode=compile", "--tag=CC",
|
|
ENV.cc, "-c", "hello.c", "-o", "hello.o"
|
|
system bin/"glibtool", "--mode=link", "--tag=CC",
|
|
ENV.cc, "hello.o", "-o", "hello"
|
|
assert_match "Hello, world!", shell_output("./hello")
|
|
end
|
|
end
|