XR packaging for Fedora Atomic
0
fork

Configure Feed

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

Apply audits to Formulae

Shiloh Fen 9497d036 4f01412d

+14 -11
+2 -1
Formula/motoc.rb
··· 6 6 license "GPL-3.0-only" 7 7 8 8 depends_on "rust" => :build 9 + depends_on :linux 9 10 depends_on "openxr-generated" 10 11 11 12 def install ··· 14 15 15 16 test do 16 17 # TODO: improve test 17 - system "motoc", "--version" 18 + system bin/"motoc", "--version" 18 19 end 19 20 end
+4 -3
Formula/openxr-generated.rb
··· 6 6 license "Apache-2.0" 7 7 8 8 depends_on "cmake" => :build 9 + depends_on "gcc" => :build 10 + depends_on "nushell" => :build 11 + depends_on "pkgconfig" => :build 9 12 depends_on "wayland-protocols" => :build 10 - depends_on "gcc" => :build 13 + depends_on :linux 11 14 depends_on "mesa" 12 - depends_on "pkgconfig" => :build 13 15 depends_on "vulkan-loader" 14 - depends_on "nushell" => :build 15 16 16 17 def install 17 18 args = %w[
+8 -7
Formula/wlx-overlay-s.rb
··· 1 1 class WlxOverlayS < Formula 2 - desc "Access your Wayland desktop from Monado/WiVRn (compiled without OpenVR & X11 support)" 2 + desc "Access your Wayland desktop from Monado/WiVRn" 3 3 homepage "https://github.com/galister/wlx-overlay-s" 4 4 url "https://github.com/galister/wlx-overlay-s/archive/refs/tags/v25.4.2.tar.gz" 5 5 sha256 "c2be093a815fa69fee65235bad573be8c1ac7959b5bad197f9e4201cc15da5ba" 6 6 license "GPL-3.0-only" 7 7 8 - depends_on "shaderc" => :build 9 - depends_on "wayland" 10 8 depends_on "alsa-lib" => :build 11 - depends_on "rust" => :build 9 + depends_on "dbus" => :build 12 10 depends_on "gcc" => :build 13 - depends_on "fontconfig" 14 11 depends_on "libpipewire" => :build 15 - depends_on "dbus" => :build 16 12 depends_on "libxkbcommon" => :build 13 + depends_on "rust" => :build 14 + depends_on "shaderc" => :build 15 + depends_on "fontconfig" 16 + depends_on :linux 17 17 depends_on "mesa" 18 18 depends_on "openxr-generated" 19 + depends_on "wayland" 19 20 20 21 def install 21 22 ENV["SHADERC_LIB_DIR"] = Formula["shaderc"].opt_lib.to_s ··· 32 33 33 34 test do 34 35 # TODO: improve test 35 - system "wlx-overlay-s", "--version" 36 + system bin/"wlx-overlay-s", "--version" 36 37 end 37 38 end