···11+# SPDX-License-Identifier: AGPL-3.0-only
22+# SPDX-FileCopyrightText: MatrixFurry <did:plc:zmjoeu3stwcn44647rhxa44o>
33+cask "stardust-xr-telescope" do
44+ on_linux do
55+ version "0.51.0"
66+ sha256 "e4c44d69bb9975c3ad19c575fa2d2e25ace1288434529c9d89a747452404614c"
77+88+ url "https://github.com/StardustXR/telescope/releases/download/#{version}/Telescope-x86_64.AppImage"
99+ name "Stardust XR Telescope"
1010+ desc "A quick start bundle installation of Stardust XR. Includes the server and a collection of clients"
1111+ homepage "https://github.com/StardustXR/telescope"
1212+1313+ livecheck do
1414+ url #{homepage}
1515+ strategy :git
1616+ end
1717+1818+ depends_on arch: :x86_64
1919+2020+ # TODO: Switch to appimage when https://github.com/Homebrew/brew/pull/20334 is merged?
2121+ binary "Telescope-x86_64.AppImage", target: "telescope"
2222+2323+ # TODO: Look for files that should go here
2424+ zap trash: ""
2525+ end
2626+end