113 lines
3.9 KiB
Ruby
113 lines
3.9 KiB
Ruby
class SpiceGtk < Formula
|
|
include Language::Python::Virtualenv
|
|
|
|
desc "GTK client/libraries for SPICE"
|
|
homepage "https://www.spice-space.org"
|
|
url "https://www.spice-space.org/download/gtk/spice-gtk-0.39.tar.xz"
|
|
sha256 "23acbee197eaaec9bce6e6bfd885bd8f79708332639243ff04833020865713cd"
|
|
license all_of: ["GPL-2.0-or-later", "LGPL-2.1-or-later", "BSD-3-Clause"]
|
|
|
|
livecheck do
|
|
url "https://www.spice-space.org/download/gtk/"
|
|
regex(/href=.*?spice-gtk[._-]v?(\d+(?:\.\d+)+)\.t/i)
|
|
end
|
|
|
|
bottle do
|
|
sha256 arm64_big_sur: "33653df442811987bf281eae7be51394129b2640fb934bb83a29aab64e89d9ec"
|
|
sha256 big_sur: "e51c47902eb3a8d5bf146330d3ed7a8965ce66b3d6d425ef5a39ebf4965c3a2c"
|
|
sha256 catalina: "a6346dd1e7a827900d7dbeaa647588fa56af3dfc72dec3686241eff1f94deaca"
|
|
sha256 mojave: "512587bfec950e40a3df1f3254427ca736af13c4e222701f32ca7a53c50d4c0f"
|
|
end
|
|
|
|
depends_on "gobject-introspection" => :build
|
|
depends_on "intltool" => :build
|
|
depends_on "libtool" => :build
|
|
depends_on "meson" => :build
|
|
depends_on "ninja" => :build
|
|
depends_on "pkg-config" => :build
|
|
depends_on "python@3.9" => :build
|
|
depends_on "vala" => :build
|
|
|
|
depends_on "atk"
|
|
depends_on "cairo"
|
|
depends_on "gdk-pixbuf"
|
|
depends_on "gettext"
|
|
depends_on "glib"
|
|
depends_on "gst-libav"
|
|
depends_on "gst-plugins-bad"
|
|
depends_on "gst-plugins-base"
|
|
depends_on "gst-plugins-good"
|
|
depends_on "gst-plugins-ugly"
|
|
depends_on "gstreamer"
|
|
depends_on "gtk+3"
|
|
depends_on "jpeg"
|
|
depends_on "json-glib"
|
|
depends_on "libusb"
|
|
depends_on "lz4"
|
|
depends_on "openssl@1.1"
|
|
depends_on "opus"
|
|
depends_on "pango"
|
|
depends_on "pixman"
|
|
depends_on "spice-protocol"
|
|
depends_on "usbredir"
|
|
|
|
resource "six" do
|
|
url "https://files.pythonhosted.org/packages/71/39/171f1c67cd00715f190ba0b100d606d440a28c93c7714febeca8b79af85e/six-1.16.0.tar.gz"
|
|
sha256 "1e61c37477a1626458e36f7b1d82aa5c9b094fa4802892072e49de9c60c4c926"
|
|
end
|
|
|
|
resource "pyparsing" do
|
|
url "https://files.pythonhosted.org/packages/c1/47/dfc9c342c9842bbe0036c7f763d2d6686bcf5eb1808ba3e170afdb282210/pyparsing-2.4.7.tar.gz"
|
|
sha256 "c203ec8783bf771a155b207279b9bccb8dea02d8f0c9e5f8ead507bc3246ecc1"
|
|
end
|
|
|
|
def install
|
|
venv = virtualenv_create(libexec, "python3")
|
|
venv.pip_install resources
|
|
ENV.prepend_path "PATH", libexec/"bin"
|
|
|
|
# https://gitlab.freedesktop.org/spice/spice-gtk/-/issues/144
|
|
inreplace "subprojects/spice-common/meson.build", "py_module.find_installation()",
|
|
"py_module.find_installation('python3')"
|
|
|
|
# usb-device-cd.c not compiling, see: https://gitlab.freedesktop.org/spice/spice-gtk/-/issues/107
|
|
args = std_meson_args + %w[
|
|
-Dsmartcard=disabled
|
|
-Dusbredir=disabled
|
|
]
|
|
|
|
mkdir "build" do
|
|
system "meson", *args, ".."
|
|
system "ninja"
|
|
system "ninja", "install"
|
|
end
|
|
end
|
|
|
|
test do
|
|
(testpath/"test.cpp").write <<~EOS
|
|
#include <spice-client.h>
|
|
#include <spice-client-gtk.h>
|
|
int main() {
|
|
return spice_session_new() ? 0 : 1;
|
|
}
|
|
EOS
|
|
system ENV.cc, "test.cpp",
|
|
"-I#{Formula["atk"].include}/atk-1.0",
|
|
"-I#{Formula["cairo"].include}/cairo",
|
|
"-I#{Formula["gdk-pixbuf"].include}/gdk-pixbuf-2.0",
|
|
"-I#{Formula["glib"].include}/glib-2.0",
|
|
"-I#{Formula["glib"].lib}/glib-2.0/include",
|
|
"-I#{Formula["gtk+3"].include}/gtk-3.0",
|
|
"-I#{Formula["harfbuzz"].opt_include}/harfbuzz",
|
|
"-I#{Formula["pango"].include}/pango-1.0",
|
|
"-I#{Formula["spice-protocol"].include}/spice-1",
|
|
"-I#{include}/spice-client-glib-2.0",
|
|
"-I#{include}/spice-client-gtk-3.0",
|
|
"-L#{lib}",
|
|
"-lspice-client-glib-2.0",
|
|
"-lspice-client-gtk-3.0",
|
|
"-o", "test"
|
|
system "./test"
|
|
end
|
|
end
|