Homebrew tap for XR (VR/AR/MR) software.
homebrew
vr
linux
oci
1# SPDX-License-Identifier: AGPL-3.0-only
2# Copyright (c) 2026 MatrixFurry <matrix@matrixfurry.com>
3cask "motoc" do
4 on_linux do
5 version "0.3.6"
6 sha256 "1fb79f50e4912d2ade2da6f88332e1008782f28cc0d34d7e5d0518bae3f80e37"
7
8 url "https://github.com/galister/motoc/releases/download/v#{version}/motoc"
9 name "Monado Tracking Origin Calibrator"
10 desc "Allows users to calibrate devices of different tracking origins (tracking technologies) to work together."
11 homepage "https://github.com/galister/motoc"
12
13 livecheck do
14 url #{homepage}
15 strategy :git
16 end
17
18 depends_on arch: :x86_64
19
20 binary "motoc"
21
22 # TODO: Look for files that should go here
23 zap trash: ""
24 end
25end