2017-02-06 10:26:50 +00:00
|
|
|
class C2048 < Formula
|
|
|
|
desc "Console version of 2048"
|
|
|
|
homepage "https://github.com/mevdschee/2048.c"
|
|
|
|
url "https://github.com/mevdschee/2048.c.git", :revision => "578a5f314e1ce31b57e645a8c0a2c9d9d5539cde"
|
|
|
|
version "0+20150805"
|
|
|
|
head "https://github.com/mevdschee/2048.c.git"
|
|
|
|
|
|
|
|
bottle do
|
|
|
|
cellar :any_skip_relocation
|
2017-02-08 08:28:08 +00:00
|
|
|
sha256 "d2f33783cf7cd2ac69eaed113d940aca31e02e5863fcdb40e200e3fe9a4d0623" => :sierra
|
|
|
|
sha256 "8f9e75196f87718be0c572f731cecba0c8cd4e8dc35f8b3027392cd6e1c45f5d" => :el_capitan
|
|
|
|
sha256 "c06bde9e58788a1a4f16b6d0ace89be02cf07f86211e0c78af5fdaa7d70a3614" => :yosemite
|
2017-02-06 10:26:50 +00:00
|
|
|
end
|
|
|
|
|
|
|
|
def install
|
|
|
|
system "make"
|
|
|
|
bin.install "2048"
|
|
|
|
end
|
|
|
|
|
|
|
|
def caveats; <<-EOS.undent
|
|
|
|
The game supports different color schemes.
|
|
|
|
For the black-to white:
|
|
|
|
2048 blackwhite
|
|
|
|
For the blue-to-red:
|
|
|
|
2048 bluered
|
|
|
|
EOS
|
|
|
|
end
|
|
|
|
|
|
|
|
test do
|
|
|
|
system "#{bin}/2048", "test"
|
|
|
|
end
|
|
|
|
end
|