XR packaging for Fedora Atomic
0
fork

Configure Feed

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

new cask: stardust-xr-telescope

+26
+26
Casks/stardust-xr-telescope.rb
··· 1 + # SPDX-License-Identifier: AGPL-3.0-only 2 + # SPDX-FileCopyrightText: MatrixFurry <did:plc:zmjoeu3stwcn44647rhxa44o> 3 + cask "stardust-xr-telescope" do 4 + on_linux do 5 + version "0.51.0" 6 + sha256 "e4c44d69bb9975c3ad19c575fa2d2e25ace1288434529c9d89a747452404614c" 7 + 8 + url "https://github.com/StardustXR/telescope/releases/download/#{version}/Telescope-x86_64.AppImage" 9 + name "Stardust XR Telescope" 10 + desc "A quick start bundle installation of Stardust XR. Includes the server and a collection of clients" 11 + homepage "https://github.com/StardustXR/telescope" 12 + 13 + livecheck do 14 + url #{homepage} 15 + strategy :git 16 + end 17 + 18 + depends_on arch: :x86_64 19 + 20 + # TODO: Switch to appimage when https://github.com/Homebrew/brew/pull/20334 is merged? 21 + binary "Telescope-x86_64.AppImage", target: "telescope" 22 + 23 + # TODO: Look for files that should go here 24 + zap trash: "" 25 + end 26 + end