ninvaders: import from homebrew/games.
This commit is contained in:
parent
b9590f748f
commit
8036fd14b6
1 changed files with 22 additions and 0 deletions
22
Formula/ninvaders.rb
Normal file
22
Formula/ninvaders.rb
Normal file
|
@ -0,0 +1,22 @@
|
|||
class Ninvaders < Formula
|
||||
desc "Space Invaders in the terminal"
|
||||
homepage "http://ninvaders.sourceforge.net/"
|
||||
url "https://downloads.sourceforge.net/project/ninvaders/ninvaders/0.1.1/ninvaders-0.1.1.tar.gz"
|
||||
sha256 "bfbc5c378704d9cf5e7fed288dac88859149bee5ed0850175759d310b61fd30b"
|
||||
|
||||
def install
|
||||
ENV.j1 # this formula's build system can't parallelize
|
||||
inreplace "Makefile" do |s|
|
||||
s.change_make_var! "CC", ENV.cc
|
||||
# gcc-4.2 doesn't like the lack of space here
|
||||
s.gsub! "-o$@", "-o $@"
|
||||
end
|
||||
system "make" # build the binary
|
||||
bin.install "nInvaders"
|
||||
end
|
||||
|
||||
test do
|
||||
assert_match "nInvaders #{version}",
|
||||
shell_output("#{bin}/nInvaders -h 2>&1", 1)
|
||||
end
|
||||
end
|
Loading…
Reference in a new issue