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.5.0/bubblewrap-0.5.0.tar.xz"
|
|
sha256 "16fdaf33799d63104e347e0133f909196fe90d0c50515d010bcb422eb5a00818"
|
|
license "LGPL-2.0-or-later"
|
|
|
|
bottle do
|
|
sha256 cellar: :any_skip_relocation, x86_64_linux: "5e73247a62f45274fa1eba92e4b33a4a8e3bdc059efe34f2a3c92a97998aab38"
|
|
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
|