Homebrew tap for QEmu augmented with a power of VirGL
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
homebrew-qemu-virgl/Formula/libangle-deps@4844.rb

29 lines
730 B

class LibangleDepsAT4844 < Formula
desc "Third party dependencies for Libangle"
homepage "https://github.com/google/angle"
url "https://github.com/google/angle.git", using: :git, revision: "29b222a3c07c541cafa459ae6886134da3493a4b"
version "4844.29b222a"
license "Various"
depends_on "meson" => :build
depends_on "ninja" => :build
depends_on "depot-tools" => :build
keg_only :versioned_formula
def install
system "python3", "scripts/bootstrap.py"
system "gclient", "sync"
dst = prefix/'deps'
dst.mkpath unless dst.directory?
%w[.cipd .gclient .gclient_entries build buildtools testing third_party tools].each do |f|
mv f, dst
end
end
test do
system "true"
end
end