Skip to content
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 3 additions & 2 deletions Formula/mftrace.rb
Original file line number Diff line number Diff line change
Expand Up @@ -39,13 +39,14 @@ class Mftrace < Formula
end

def install
ENV["PYTHON"] = which("python3.11")
buildpath.install resource("manpage") if build.stable?
system "./autogen.sh" if build.head?
system "./configure", "--prefix=#{prefix}"
system "./configure", *std_configure_args
system "make", "install"
end

test do
system "#{bin}/mftrace", "--version"
system bin/"mftrace", "--version"
end
end