36 lines
1.0 KiB
Ruby
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.7.2/crun-1.7.2.tar.xz"
|
|
sha256 "dfce0fdf042c7de84e8672369f54f723c2f788d2bde076a4c6edf530e6306b5a"
|
|
license any_of: ["GPL-2.0-or-later", "LGPL-2.1-or-later"]
|
|
|
|
bottle do
|
|
sha256 cellar: :any_skip_relocation, x86_64_linux: "aa657e22ae5f3aac1539214d2535f12c93c26dc43099234a5c2e328b124c0e21"
|
|
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.11" => :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
|