78 lines
2.6 KiB
Ruby
78 lines
2.6 KiB
Ruby
class CrosstoolNg < Formula
|
|
desc "Tool for building toolchains"
|
|
homepage "https://crosstool-ng.github.io/"
|
|
url "http://crosstool-ng.org/download/crosstool-ng/crosstool-ng-1.25.0.tar.xz"
|
|
sha256 "68162f342243cd4189ed7c1f4e3bb1302caa3f2cbbf8331879bd01fe06c60cd3"
|
|
license "GPL-2.0-only"
|
|
head "https://github.com/crosstool-ng/crosstool-ng.git", branch: "master"
|
|
|
|
livecheck do
|
|
url "https://crosstool-ng.github.io/download/"
|
|
regex(/href=.*?crosstool-ng[._-]v?(\d+(?:\.\d+)+)\.t/i)
|
|
end
|
|
|
|
bottle do
|
|
sha256 cellar: :any, arm64_monterey: "3ed8b07aa9c0250edf408d7fd4dc79c02b7cd40a847730f4bd9eb152779d6385"
|
|
sha256 cellar: :any, arm64_big_sur: "652c574f396d1be709de7ac74bc39943d173a9a69992004e0c1f84c0694a4347"
|
|
sha256 cellar: :any, monterey: "fc72ddfe1f31d0de37248f49686ddc6ef4caef94c0574367c0fae00cf65189f0"
|
|
sha256 cellar: :any, big_sur: "be3beb87b1beabdf57468e41cb7604fd22b3623c27e2d027af02a68dc1a78b7f"
|
|
sha256 cellar: :any, catalina: "4b0bb05c4f7770ebe17085b4e34c45125989daa01e734ef6fc1d9269e0e6eb38"
|
|
sha256 cellar: :any_skip_relocation, x86_64_linux: "625bd9d390262a14b5c2b3c0fd316d9832ac2b6f910f06a22a69dd90e131b1f3"
|
|
end
|
|
|
|
depends_on "help2man" => :build
|
|
depends_on "autoconf"
|
|
depends_on "automake"
|
|
depends_on "binutils"
|
|
depends_on "bison"
|
|
depends_on "flex"
|
|
depends_on "gettext"
|
|
depends_on "libtool"
|
|
depends_on "lzip"
|
|
depends_on "m4"
|
|
depends_on "ncurses"
|
|
depends_on "python@3.10"
|
|
depends_on "xz"
|
|
|
|
uses_from_macos "flex" => :build
|
|
uses_from_macos "gperf" => :build
|
|
uses_from_macos "texinfo" => :build
|
|
uses_from_macos "unzip" => :build
|
|
|
|
on_macos do
|
|
depends_on "bash"
|
|
depends_on "coreutils"
|
|
depends_on "gawk"
|
|
depends_on "gnu-sed"
|
|
depends_on "grep"
|
|
depends_on "make"
|
|
end
|
|
|
|
def install
|
|
system "./bootstrap" if build.head?
|
|
|
|
ENV["BISON"] = Formula["bison"].opt_bin/"bison"
|
|
ENV["M4"] = Formula["m4"].opt_bin/"m4"
|
|
ENV["MAKE"] = Formula["make"].opt_bin/"gmake" if OS.mac?
|
|
ENV["PYTHON"] = Formula["python@3.10"].opt_bin/"python3"
|
|
ENV.append "LDFLAGS", "-lintl" if OS.mac?
|
|
ENV.append "CFLAGS", "-I#{Formula["ncurses"].include}/ncursesw" unless OS.mac?
|
|
|
|
system "./configure", "--prefix=#{prefix}"
|
|
|
|
# Must be done in two steps
|
|
system "make"
|
|
system "make", "install"
|
|
|
|
unless OS.mac?
|
|
[bin/"ct-ng", pkgshare/"paths.sh"].each do |file|
|
|
inreplace file, Superenv.shims_path/"make", "make"
|
|
end
|
|
end
|
|
end
|
|
|
|
test do
|
|
assert_match "This is crosstool-NG", shell_output("make -rf #{bin}/ct-ng version")
|
|
end
|
|
end
|