33 lines
987 B
Ruby
33 lines
987 B
Ruby
class LttngUst < Formula
|
|
desc "Linux Trace Toolkit Next Generation Userspace Tracer"
|
|
homepage "https://lttng.org/"
|
|
url "https://lttng.org/files/lttng-ust/lttng-ust-2.13.4.tar.bz2"
|
|
sha256 "698f82ec5dc56e981c0bb08c46ebabaf31c60e877c2e365b9fd6d3a9fff8b398"
|
|
license all_of: ["LGPL-2.1-only", "MIT", "GPL-2.0-only", "BSD-3-Clause", "BSD-2-Clause", "GPL-3.0-or-later"]
|
|
|
|
livecheck do
|
|
url "https://lttng.org/download/"
|
|
regex(/href=.*?lttng-ust[._-]v?(\d+(?:\.\d+)+)\.t/i)
|
|
end
|
|
|
|
bottle do
|
|
sha256 cellar: :any_skip_relocation, x86_64_linux: "1cf36e0dd2641f1fa4d31107277cfe363d63b55260ae8a8159ba7f78528f8302"
|
|
end
|
|
|
|
depends_on "pkg-config" => :build
|
|
depends_on :linux
|
|
depends_on "numactl"
|
|
depends_on "userspace-rcu"
|
|
|
|
def install
|
|
system "./configure", *std_configure_args, "--disable-silent-rules"
|
|
system "make", "install"
|
|
end
|
|
|
|
test do
|
|
cp_r (share/"doc/lttng-ust/examples/demo").children, testpath
|
|
system "make"
|
|
system "./demo"
|
|
end
|
|
end
|