Skip to content

Commit

Permalink
Create wipeout-rewrite.rb
Browse files Browse the repository at this point in the history
  • Loading branch information
alexmyczko authored Aug 19, 2024
1 parent ada8227 commit 782bec9
Showing 1 changed file with 21 additions and 0 deletions.
21 changes: 21 additions & 0 deletions wipeout-rewrite.rb
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
class WipeoutRewrite < Formula
desc "futuristic anti gravity racing"
homepage "https://github.com/phoboslab/wipeout-rewrite"
url "http://bananas.debian.net/debian/wipeout/wipeout-rewrite_0.tar.xz"
sha256 "535ed89bad1e525407ffa73fbd252644d5b9a848eddd0b0af98a4c838c69998c"
license "PUBLIC-DOMAIN"
# get the data from https://phoboslab.org/files/wipeout-data-v01.zip

depends_on "cmake" => :build
depends_on "sdl2" => :build

def install
system "make"
bin.install "wipegame"
#man1.install "manpage/wipegame" => "wipegame.6"
end

test do
system "#{bin}/wipegame", "-v"
end
end

0 comments on commit 782bec9

Please sign in to comment.