95884bae22
Closes Homebrew/homebrew#42407. Signed-off-by: Mike McQuaid <mike@mikemcquaid.com>
27 lines
1 KiB
Ruby
27 lines
1 KiB
Ruby
class AbiComplianceChecker < Formula
|
|
desc "Check binary and source compatibility for C/C++"
|
|
homepage "http://ispras.linuxbase.org/index.php/ABI_compliance_checker"
|
|
url "https://github.com/lvc/abi-compliance-checker/archive/1.99.9.tar.gz"
|
|
sha256 "52b0daca89fcda73cde126497c8015ca823417074ba02fcff68b7acf2f45e516"
|
|
|
|
depends_on "ctags"
|
|
depends_on "gcc" => :run
|
|
|
|
def install
|
|
system "perl", "Makefile.pl", "-install", "--prefix=#{prefix}"
|
|
rm bin/"abi-compliance-checker.cmd"
|
|
end
|
|
|
|
test do
|
|
(testpath/"test.xml").write <<-EOS.undent
|
|
<version>1.0</version>
|
|
<headers>#{Formula["ctags"].include}</headers>
|
|
<libs>#{Formula["ctags"].lib}</libs>
|
|
EOS
|
|
gcc_suffix = Formula["gcc"].version.to_s.slice(/\d\.\d+/)
|
|
system bin/"abi-compliance-checker", "-cross-gcc", "gcc-" + gcc_suffix,
|
|
"-lib", "ctags",
|
|
"-old", testpath/"test.xml",
|
|
"-new", testpath/"test.xml"
|
|
end
|
|
end
|