45 lines
1.6 KiB
Ruby
45 lines
1.6 KiB
Ruby
class Gcab < Formula
|
|
desc "Windows installer (.MSI) tool"
|
|
homepage "https://wiki.gnome.org/msitools"
|
|
url "https://download.gnome.org/sources/gcab/1.4/gcab-1.4.tar.xz"
|
|
sha256 "67a5fa9be6c923fbc9197de6332f36f69a33dadc9016a2b207859246711c048f"
|
|
revision 1
|
|
|
|
# We use a common regex because gcab doesn't use GNOME's "even-numbered minor
|
|
# is stable" version scheme.
|
|
livecheck do
|
|
url :stable
|
|
regex(/gcab[._-]v?(\d+(?:\.\d+)+)\.t/i)
|
|
end
|
|
|
|
bottle do
|
|
sha256 arm64_monterey: "c4bb1fa92fe4b29d711b922ddb471a6535c38fe3b4986f863062299337fc8a3d"
|
|
sha256 arm64_big_sur: "df16b825f3c8acb716846e922e256b00ecd638b59d0676a4e89e92821886d6eb"
|
|
sha256 monterey: "ac0c4fffbfc00d88a05f2a2ba67e4e939b526e475a1b89ee9918f8c5943b076d"
|
|
sha256 big_sur: "1d850c754fe6688bc5534637a9888215163d187569f80a4b57fc82f0e74aa14b"
|
|
sha256 catalina: "7ed919ea9c7d4ec04f9d5f361f8628936e016318475fec26fdf6ef5ea56491cc"
|
|
sha256 mojave: "c9ef02142502a47b006db735b87fe7d55611d46ecc087c697d3142ce8bd9c27a"
|
|
sha256 high_sierra: "ca3d97d649c89be881528e7a7cf42f51c18c3a8e4c4b47c9a5fad29f355afd30"
|
|
sha256 x86_64_linux: "f61efcbd08ad730ebb31060c38c78dab54fd8ae732a0e544d1bb171aa20636a6"
|
|
end
|
|
|
|
depends_on "gobject-introspection" => :build
|
|
depends_on "meson" => :build
|
|
depends_on "ninja" => :build
|
|
depends_on "pkg-config" => :build
|
|
depends_on "vala" => :build
|
|
depends_on "glib"
|
|
|
|
def install
|
|
mkdir "build" do
|
|
system "meson", *std_meson_args, "-Ddocs=false", ".."
|
|
system "ninja"
|
|
system "ninja", "install"
|
|
end
|
|
end
|
|
|
|
test do
|
|
system "#{bin}/gcab", "--version"
|
|
end
|
|
end
|