118 lines
3.9 KiB
Ruby
118 lines
3.9 KiB
Ruby
class Creduce < Formula
|
|
desc "Reduce a C/C++ program while keeping a property of interest"
|
|
homepage "https://embed.cs.utah.edu/creduce/"
|
|
license "BSD-3-Clause"
|
|
revision 3
|
|
|
|
# Remove when `head` and `stable` use the same LLVM version.
|
|
stable do
|
|
url "https://embed.cs.utah.edu/creduce/creduce-2.10.0.tar.gz"
|
|
sha256 "db1c0f123967f24d620b040cebd53001bf3dcf03e400f78556a2ff2e11fea063"
|
|
depends_on "llvm@9"
|
|
|
|
# Use shared libraries.
|
|
# Remove with the next release.
|
|
patch do
|
|
url "https://github.com/csmith-project/creduce/commit/e9bb8686c5ef83a961f63744671c5e70066cba4e.patch?full_index=1"
|
|
sha256 "d5878a2c8fb6ebc5a43ad25943a513ff5226e42b842bb84f466cdd07d7bd626a"
|
|
end
|
|
end
|
|
|
|
livecheck do
|
|
url :homepage
|
|
regex(/href=.*?creduce[._-]v?(\d+(?:\.\d+)+)\.t/i)
|
|
end
|
|
|
|
bottle do
|
|
sha256 cellar: :any, monterey: "069e9750872df6697d94b6bf720f40e90a6c0597d1ee93e92d859a2001efbb1b"
|
|
sha256 cellar: :any, big_sur: "912f5a829739eb3eea26aea9d13de6473a5bbf534d5ab144839e1e8793b890a1"
|
|
sha256 cellar: :any, catalina: "ce269469c92326c638d08ea7e5a1902c7643ebcbe277591945b9ded29373d081"
|
|
sha256 cellar: :any_skip_relocation, x86_64_linux: "05609defa2c67b6cc907d1c30f7f4080e03211ce918fa5d6b79c256b608805a8"
|
|
end
|
|
|
|
head do
|
|
url "https://github.com/csmith-project/creduce.git", branch: "master"
|
|
depends_on "llvm"
|
|
end
|
|
|
|
depends_on "astyle"
|
|
|
|
uses_from_macos "perl"
|
|
|
|
resource "Exporter::Lite" do
|
|
url "https://cpan.metacpan.org/authors/id/N/NE/NEILB/Exporter-Lite-0.08.tar.gz"
|
|
sha256 "c05b3909af4cb86f36495e94a599d23ebab42be7a18efd0d141fc1586309dac2"
|
|
end
|
|
|
|
resource "File::Which" do
|
|
url "https://cpan.metacpan.org/authors/id/P/PL/PLICEASE/File-Which-1.23.tar.gz"
|
|
sha256 "b79dc2244b2d97b6f27167fc3b7799ef61a179040f3abd76ce1e0a3b0bc4e078"
|
|
end
|
|
|
|
resource "Getopt::Tabular" do
|
|
url "https://cpan.metacpan.org/authors/id/G/GW/GWARD/Getopt-Tabular-0.3.tar.gz"
|
|
sha256 "9bdf067633b5913127820f4e8035edc53d08372faace56ba6bfa00c968a25377"
|
|
end
|
|
|
|
resource "Regexp::Common" do
|
|
url "https://cpan.metacpan.org/authors/id/A/AB/ABIGAIL/Regexp-Common-2017060201.tar.gz"
|
|
sha256 "ee07853aee06f310e040b6bf1a0199a18d81896d3219b9b35c9630d0eb69089b"
|
|
end
|
|
|
|
resource "URI::Escape" do
|
|
on_linux do
|
|
url "https://cpan.metacpan.org/authors/id/E/ET/ETHER/URI-1.72.tar.gz"
|
|
sha256 "35f14431d4b300de4be1163b0b5332de2d7fbda4f05ff1ed198a8e9330d40a32"
|
|
end
|
|
end
|
|
|
|
def install
|
|
ENV.prepend_create_path "PERL5LIB", libexec/"lib/perl5"
|
|
|
|
llvm = deps.find { |dep| dep.name.match?(/^llvm(@\d+)?$/) }
|
|
.to_formula
|
|
# Avoid ending up with llvm's Cellar path hard coded.
|
|
ENV["CLANG_FORMAT"] = llvm.opt_bin/"clang-format"
|
|
|
|
resources.each do |r|
|
|
r.stage do
|
|
system "perl", "Makefile.PL", "INSTALL_BASE=#{libexec}"
|
|
system "make"
|
|
system "make", "install"
|
|
end
|
|
end
|
|
|
|
# Work around build failure seen on Apple Clang 13.1.6 by using LLVM Clang
|
|
# Undefined symbols for architecture x86_64:
|
|
# "std::__1::basic_stringbuf<char, std::__1::char_traits<char>, ...
|
|
if DevelopmentTools.clang_build_version == 1316
|
|
ENV["CC"] = llvm.opt_bin/"clang"
|
|
ENV["CXX"] = llvm.opt_bin/"clang++"
|
|
end
|
|
|
|
system "./configure", "--prefix=#{prefix}",
|
|
"--disable-dependency-tracking",
|
|
"--bindir=#{libexec}"
|
|
system "make"
|
|
system "make", "install"
|
|
|
|
(bin/"creduce").write_env_script("#{libexec}/creduce", PERL5LIB: ENV["PERL5LIB"])
|
|
end
|
|
|
|
test do
|
|
(testpath/"test1.c").write <<~EOS
|
|
int main() {
|
|
printf("%d\n", 0);
|
|
}
|
|
EOS
|
|
(testpath/"test1.sh").write <<~EOS
|
|
#!/usr/bin/env bash
|
|
|
|
#{ENV.cc} -Wall #{testpath}/test1.c 2>&1 | grep 'Wimplicit-function-declaration'
|
|
EOS
|
|
|
|
chmod 0755, testpath/"test1.sh"
|
|
system "#{bin}/creduce", "test1.sh", "test1.c"
|
|
end
|
|
end
|