homebrew-core/Formula/distrobox.rb

23 lines
669 B
Ruby
Raw Normal View History

class Distrobox < Formula
desc "Use any Linux distribution inside your terminal"
homepage "https://distrobox.privatedns.org/"
url "https://github.com/89luca89/distrobox/archive/refs/tags/1.4.0.tar.gz"
sha256 "e643a702c3f3f0d7467afe840b4f3ee6e4c369b6464618b6ec09f7ad27eb64f5"
license "GPL-3.0-only"
head "https://github.com/89luca89/distrobox.git", branch: "main"
2022-09-01 13:25:18 +00:00
bottle do
2022-09-08 02:58:21 +00:00
sha256 cellar: :any_skip_relocation, x86_64_linux: "e5e3a2b3ee619d725c96de334054404e3d281d338d7b9ff6bcf5f08c5a6229be"
2022-09-01 13:25:18 +00:00
end
depends_on :linux
def install
system "./install", "--prefix", prefix
end
test do
system bin/"distrobox-create", "--dry-run"
end
end