91bea852d0
crosstool-ng installs the script `bin/ct-ng` with a shbang, using exactly what's provided to configure for `--with-make`. When `--with-make` is provided to this formula, that results in a shbang line of #!gmake -rf which is not not a valid interpreter $ ct-ng version -bash: /usr/local/bin/ct-ng: gmake: bad interpreter: No such file or directory Closes Homebrew/homebrew#45160. Signed-off-by: Mike McQuaid <mike@mikemcquaid.com>
64 lines
1.9 KiB
Ruby
64 lines
1.9 KiB
Ruby
class CrosstoolNg < Formula
|
|
desc "Tool for building toolchains"
|
|
homepage "http://crosstool-ng.org"
|
|
url "http://crosstool-ng.org/download/crosstool-ng/crosstool-ng-1.21.0.tar.bz2"
|
|
sha256 "67122ba42657da258f23de4a639bc49c6ca7fe2173b5efba60ce729c6cce7a41"
|
|
|
|
bottle do
|
|
cellar :any_skip_relocation
|
|
revision 1
|
|
sha256 "12da46c49731e5bdd94b3e209d86bc3a2e0fa4a26e7982a76b07a492641c5e6d" => :el_capitan
|
|
sha256 "bce130a66509ebb9a134b1aec50abcbcc505c3d012fecd8d135b9acaf128ef01" => :yosemite
|
|
sha256 "46ec6b65cb40a715a166aa6c4544be4028e2ac7d95ce24e15878318529133bea" => :mavericks
|
|
end
|
|
|
|
depends_on "autoconf" => :build
|
|
depends_on "automake" => :build
|
|
depends_on "libtool" => :build
|
|
depends_on "coreutils" => :build
|
|
depends_on "wget"
|
|
depends_on "gnu-sed"
|
|
depends_on "gawk"
|
|
depends_on "binutils"
|
|
depends_on "libelf"
|
|
depends_on "homebrew/dupes/grep" => :optional
|
|
depends_on "homebrew/dupes/make" => :optional
|
|
|
|
# Avoid superenv to prevent https://github.com/mxcl/homebrew/pull/10552#issuecomment-9736248
|
|
env :std
|
|
|
|
def install
|
|
args = ["--prefix=#{prefix}",
|
|
"--exec-prefix=#{prefix}",
|
|
"--with-objcopy=gobjcopy",
|
|
"--with-objdump=gobjdump",
|
|
"--with-readelf=greadelf",
|
|
"--with-libtool=glibtool",
|
|
"--with-libtoolize=glibtoolize",
|
|
"--with-install=ginstall",
|
|
"--with-sed=gsed",
|
|
"--with-awk=gawk",
|
|
]
|
|
|
|
args << "--with-grep=ggrep" if build.with? "grep"
|
|
|
|
args << "--with-make=#{Formula["make"].opt_bin}/gmake" if build.with? "make"
|
|
|
|
args << "CFLAGS=-std=gnu89"
|
|
|
|
system "./configure", *args
|
|
|
|
# Must be done in two steps
|
|
system "make"
|
|
system "make", "install"
|
|
end
|
|
|
|
def caveats; <<-EOS.undent
|
|
You will need to install modern gcc compiler in order to use this tool.
|
|
EOS
|
|
end
|
|
|
|
test do
|
|
system "#{bin}/ct-ng", "version"
|
|
end
|
|
end
|