37 lines
1.1 KiB
Ruby
37 lines
1.1 KiB
Ruby
class Strace < Formula
|
|
desc "Diagnostic, instructional, and debugging tool for the Linux kernel"
|
|
homepage "https://strace.io/"
|
|
url "https://github.com/strace/strace/releases/download/v5.16/strace-5.16.tar.xz"
|
|
sha256 "dc7db230ff3e57c249830ba94acab2b862da1fcaac55417e9b85041a833ca285"
|
|
license "LGPL-2.1-or-later"
|
|
|
|
bottle do
|
|
sha256 cellar: :any_skip_relocation, x86_64_linux: "6ed8c9b2d8c8127761ef59328b1d5ce06af24a3bce0be186279422df3a5dceb8"
|
|
end
|
|
|
|
head do
|
|
url "https://github.com/strace/strace.git"
|
|
depends_on "autoconf" => :build
|
|
depends_on "automake" => :build
|
|
end
|
|
|
|
depends_on :linux
|
|
depends_on "linux-headers@4.4"
|
|
|
|
def install
|
|
system "./bootstrap" if build.head?
|
|
system "./configure",
|
|
"--disable-dependency-tracking",
|
|
"--disable-silent-rules",
|
|
"--prefix=#{prefix}",
|
|
"--enable-mpers=no" # FIX: configure: error: Cannot enable m32 personality support
|
|
system "make", "install"
|
|
end
|
|
|
|
test do
|
|
out = `"strace" "true" 2>&1` # strace the true command, redirect stderr to output
|
|
assert_match "execve(", out
|
|
assert_match "+++ exited with 0 +++", out
|
|
end
|
|
end
|