XR packaging for Fedora Atomic
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

motoc (new formula)

Closes #6

Shiloh Fen 4f01412d 2dce23c4

+19
+19
Formula/motoc.rb
··· 1 + class Motoc < Formula 2 + desc "Monado Tracking Origin Calibrator" 3 + homepage "https://github.com/galister/motoc" 4 + url "https://github.com/galister/motoc/archive/refs/tags/v0.3.4.tar.gz" 5 + sha256 "35957029c838de0d1a2ec556639440004b03d957107230fbc2a01b5a83af7361" 6 + license "GPL-3.0-only" 7 + 8 + depends_on "rust" => :build 9 + depends_on "openxr-generated" 10 + 11 + def install 12 + system "cargo", "install", *std_cargo_args 13 + end 14 + 15 + test do 16 + # TODO: improve test 17 + system "motoc", "--version" 18 + end 19 + end