homebrew-core/Formula/crun.rb

36 lines
1.0 KiB
Ruby

class Crun < Formula
desc "Fast and lightweight fully featured OCI runtime and C library"
homepage "https://github.com/containers/crun"
url "https://github.com/containers/crun/releases/download/1.6/crun-1.6.tar.xz"
sha256 "8ae387950f3f75aaff7fe9da14f2f012be842a8b20038bb8344a451197b40ee4"
license any_of: ["GPL-2.0-or-later", "LGPL-2.1-or-later"]
bottle do
sha256 cellar: :any_skip_relocation, x86_64_linux: "0c75ff86fd0fd23d504bc0162f594c0cf3715da8388c43757f8c1daf6b3a7740"
end
depends_on "autoconf" => :build
depends_on "automake" => :build
depends_on "go-md2man" => :build
depends_on "libtool" => :build
depends_on "pkg-config" => :build
depends_on "python@3.10" => :build
depends_on "libcap"
depends_on "libseccomp"
depends_on :linux
depends_on "systemd"
depends_on "yajl"
def install
system "./autogen.sh"
system "./configure", "--prefix=#{prefix}"
system "make"
system "make", "install"
end
test do
assert_equal "", shell_output("crun --rootless=true list -q").strip
end
end