homebrew-core/Formula/npush.rb

24 lines
838 B
Ruby
Raw Normal View History

2017-02-06 10:26:57 +00:00
class Npush < Formula
desc "Logic game simliar to Sokoban and Boulder Dash"
2017-02-13 23:55:36 +00:00
homepage "https://npush.sourceforge.io/"
2017-02-06 10:26:57 +00:00
url "https://downloads.sourceforge.net/project/npush/npush/0.7/npush-0.7.tgz"
sha256 "f216d2b3279e8737784f77d4843c9e6f223fa131ce1ebddaf00ad802aba2bcd9"
2017-03-10 09:03:23 +00:00
head "https://svn.code.sf.net/p/npush/code/"
2017-02-06 10:26:57 +00:00
bottle do
cellar :any_skip_relocation
2017-02-08 08:28:14 +00:00
sha256 "ce2f958ef8d766791137266e74b7c2cd0843755d080ecbbd6a7074bc7d035c19" => :sierra
sha256 "c37e743784c68e9c1bb1527d4c6161a5653831de44b3203be8c1cb07d9eeb7c2" => :el_capitan
sha256 "d334de125247efff9ce8031cedbb240a493b355a66cae5e6687cefb414d69ffb" => :yosemite
2017-02-06 10:26:57 +00:00
end
def install
system "make"
pkgshare.install ["npush", "levels"]
(bin/"npush").write <<-EOS.undent
#!/bin/sh
cd "#{pkgshare}" && exec ./npush $@
EOS
end
end