XR packaging for Fedora Atomic
0
fork

Configure Feed

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

oscavmgr (new formula)

Closes #4

+23
+23
Formula/oscavmgr.rb
··· 1 + # Documentation: https://docs.brew.sh/Formula-Cookbook 2 + # https://rubydoc.brew.sh/Formula 3 + # PLEASE REMOVE ALL GENERATED COMMENTS BEFORE SUBMITTING YOUR PULL REQUEST! 4 + class Oscavmgr < Formula 5 + desc "Face tracking & utilities for Resonite and VRC" 6 + homepage "https://github.com/galister/oscavmgr" 7 + url "https://github.com/galister/oscavmgr/archive/refs/tags/v25.2.tar.gz" 8 + sha256 "497c7cc432bf7f79ff131b6c70cb968cc2a3f44cafac92e93c824c8cd6d03087" 9 + license "MIT" 10 + 11 + depends_on "rust" => :build 12 + depends_on :linux 13 + depends_on "openxr-generated" 14 + 15 + def install 16 + system "cargo", "install", *std_cargo_args 17 + end 18 + 19 + test do 20 + # TODO: improve test 21 + system bin/"oscavmgr", "--version" 22 + end 23 + end