44 lines
1.5 KiB
Ruby
44 lines
1.5 KiB
Ruby
class Bubblewrap < Formula
|
|
desc "Unprivileged sandboxing tool for Linux"
|
|
homepage "https://github.com/containers/bubblewrap"
|
|
url "https://github.com/containers/bubblewrap/releases/download/v0.7.0/bubblewrap-0.7.0.tar.xz"
|
|
sha256 "764ab7100bd037ea53d440d362e099d7a425966bc62d1f00ab26b8fbb882a9dc"
|
|
license "LGPL-2.0-or-later"
|
|
|
|
bottle do
|
|
sha256 cellar: :any_skip_relocation, x86_64_linux: "73f968a609c8ccb42909bfdebab5addcd52c59ecda5bfb19a081ae9f95e0dbbf"
|
|
end
|
|
|
|
head do
|
|
url "https://github.com/containers/bubblewrap.git", branch: "master"
|
|
depends_on "autoconf" => :build
|
|
depends_on "automake" => :build
|
|
end
|
|
|
|
depends_on "docbook-xsl" => :build
|
|
depends_on "libxslt" => :build
|
|
depends_on "strace" => :test
|
|
depends_on "libcap"
|
|
depends_on :linux
|
|
|
|
def install
|
|
system "autoreconf", "-fvi" if build.head?
|
|
system "./configure", *std_configure_args, "--disable-silent-rules",
|
|
"--with-bash-completion-dir=#{bash_completion}"
|
|
|
|
# Use docbook-xsl's docbook style for generating the man pages:
|
|
inreplace "Makefile" do |s|
|
|
s.gsub! "http://docbook.sourceforge.net/release/xsl/current",
|
|
"#{Formula["docbook-xsl"].opt_prefix}/docbook-xsl"
|
|
end
|
|
|
|
system "make", "install"
|
|
end
|
|
|
|
test do
|
|
assert_match "bubblewrap", "#{bin}/bwrap --version"
|
|
assert_match "clone", shell_output("strace -e inject=clone:error=EPERM " \
|
|
"#{bin}/bwrap --bind / / /bin/echo hi 2>&1", 1)
|
|
end
|
|
end
|