43 lines
2.0 KiB
Ruby
43 lines
2.0 KiB
Ruby
class SpirvCross < Formula
|
|
desc "Performing reflection and disassembling SPIR-V"
|
|
homepage "https://github.com/KhronosGroup/SPIRV-Cross"
|
|
url "https://github.com/KhronosGroup/SPIRV-Cross/archive/2021-01-15.tar.gz"
|
|
version "2021-01-15"
|
|
sha256 "d700863b548cbc7f27a678cee305f561669a126eb2cc11d36a7023dfc462b9c4"
|
|
license "Apache-2.0"
|
|
|
|
bottle do
|
|
sha256 cellar: :any_skip_relocation, arm64_ventura: "ce681803131b114f973e47e23003394b5e4238473a7c595a21a23c0b90b42fa0"
|
|
sha256 cellar: :any_skip_relocation, arm64_monterey: "81b39909da8d863717546e6e07da98ffeb3861ccf359082ff5fe94dcd4623123"
|
|
sha256 cellar: :any_skip_relocation, arm64_big_sur: "80a4ee152f875a3b653457ee40e0a05fa9892cc6203fd3d525e16157e646c3c0"
|
|
sha256 cellar: :any_skip_relocation, ventura: "1206c42b59212e72be0325eafc39eedafe12e70a6b6f452414f304e7a62b51dc"
|
|
sha256 cellar: :any_skip_relocation, monterey: "bf474aadfd797bf685430e8112a6572a0cd3445e2a694ebed9d234134a3d2f39"
|
|
sha256 cellar: :any_skip_relocation, big_sur: "224f4a1ac8dbc055a8ea1a431a82e275a3de850f805d7aa5388d05696616e403"
|
|
sha256 cellar: :any_skip_relocation, catalina: "612183441f7920e7f6a3f4d87181e30ecc071a3d2d20185c8b3d614dc2deb30b"
|
|
sha256 cellar: :any_skip_relocation, mojave: "df9e5893b35edc958ae73b9e763ff63e35d5e8438f9e67cc332ec14ce00f6def"
|
|
sha256 cellar: :any_skip_relocation, x86_64_linux: "95b1a4f371d7235a3c7552c6a9b160adb90ab6dbbc50005d3e89981a0ffe93b6"
|
|
end
|
|
|
|
depends_on "cmake" => :build
|
|
depends_on "glm" => :test
|
|
depends_on "glslang" => :test
|
|
|
|
def install
|
|
mkdir "build" do
|
|
system "cmake", "..", *std_cmake_args
|
|
system "make", "install"
|
|
end
|
|
# required for tests
|
|
prefix.install "samples"
|
|
(include/"spirv_cross").install Dir["include/spirv_cross/*"]
|
|
end
|
|
|
|
test do
|
|
cp_r Dir[prefix/"samples/cpp/*"], testpath
|
|
inreplace "Makefile", "-I../../include", "-I#{include}"
|
|
inreplace "Makefile", "../../spirv-cross", "spirv-cross"
|
|
|
|
system "make"
|
|
end
|
|
end
|