55 lines
1.9 KiB
Ruby
55 lines
1.9 KiB
Ruby
class SpiceProtocol < Formula
|
|
desc "Headers for SPICE protocol"
|
|
homepage "https://www.spice-space.org/"
|
|
url "https://www.spice-space.org/download/releases/spice-protocol-0.14.3.tar.xz"
|
|
sha256 "f986e5bc2a1598532c4897f889afb0df9257ac21c160c083703ae7c8de99487a"
|
|
license "BSD-3-Clause"
|
|
|
|
livecheck do
|
|
url "https://www.spice-space.org/download/releases/"
|
|
regex(/href=.*?spice-protocol[._-]v?(\d+(?:\.\d+)+)\.t/i)
|
|
end
|
|
|
|
bottle do
|
|
sha256 cellar: :any_skip_relocation, arm64_big_sur: "fd26340728c429bf9986173e7bc5c8096158e14a03b52c19357b6d1e7eb4ffb5"
|
|
sha256 cellar: :any_skip_relocation, big_sur: "1f1d09e0fdcd095c950b1f1568133b15dd8cd7c752463cdfaf6ff9343895b8d3"
|
|
sha256 cellar: :any_skip_relocation, catalina: "c1e7d23c49491707d0113d45759756a55fb479ed0cdc6c0d3ec55d68a58a61cd"
|
|
sha256 cellar: :any_skip_relocation, mojave: "c65655047ff18f1b00ec71a24469409c4483f0be190fdc2735470730cdf95b17"
|
|
sha256 cellar: :any_skip_relocation, high_sierra: "86145a5c7d8c109671fb9277ac07c56c8f8475c0854b2e2123a3beabd2626f06"
|
|
sha256 cellar: :any_skip_relocation, x86_64_linux: "4aa1d60915c8f90d6ce29cc6b26d6dd2b03bee60ae44c63890ba122c57f02c0d"
|
|
end
|
|
|
|
depends_on "meson" => :build
|
|
depends_on "ninja" => :build
|
|
|
|
on_linux do
|
|
# Test fails on gcc-5: spice/macros.h:68:32: error: expected '}' before '__attribute__'
|
|
depends_on "gcc" => :test
|
|
end
|
|
|
|
def install
|
|
mkdir "build" do
|
|
system "meson", *std_meson_args, "-Dwith-docs=false", ".."
|
|
system "ninja", "-v"
|
|
system "ninja", "install", "-v"
|
|
end
|
|
end
|
|
|
|
test do
|
|
(testpath/"test.cpp").write <<~EOS
|
|
#include <spice/protocol.h>
|
|
int main() {
|
|
return (SPICE_LINK_ERR_OK == 0) ? 0 : 1;
|
|
}
|
|
EOS
|
|
|
|
cc = ENV.cc
|
|
on_linux do
|
|
cc = Formula["gcc"].opt_bin/"gcc-#{Formula["gcc"].any_installed_version.major}"
|
|
end
|
|
|
|
system cc, "test.cpp", "-I#{include}/spice-1", "-o", "test"
|
|
system "./test"
|
|
end
|
|
end
|