XR packaging for Fedora Atomic
0
fork

Configure Feed

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

vrc-advert (new formula)

Closes #7

Shiloh Fen 29540644 9497d036

+21
+21
Formula/vrc-advert.rb
··· 1 + class VrcAdvert < Formula 2 + desc "Advertise your OSC app through OSCQuery" 3 + homepage "https://github.com/galister/VrcAdvert" 4 + url "https://github.com/galister/VrcAdvert/archive/refs/tags/v1.0.1.tar.gz" 5 + sha256 "7f21dbd5eb5bfdc4f75cdce7138bd97f2caf46c076fe0a7e54f31049b7fb5b9f" 6 + license "Unlicense" 7 + 8 + depends_on "dotnet@8" => :build 9 + depends_on :linux 10 + 11 + def install 12 + system "dotnet", "publish", "-r", "linux-x64", "--self-contained", "true", "-p:PublishSingleFile=true", "-p:PublishTrimmed=true" 13 + 14 + bin.install "#{buildpath}/bin/Release/net8.0/linux-x64/publish/VrcAdvert" 15 + end 16 + 17 + test do 18 + # TODO: Improve test 19 + system bin/"VrcAdvert", "--version" 20 + end 21 + end