homebrew-core/Formula/pacvim.rb
BrewTestBot 95884bae22 Formula files style updates.
Closes Homebrew/homebrew#42407.

Signed-off-by: Mike McQuaid <mike@mikemcquaid.com>
2015-08-03 14:21:42 +01:00

20 lines
623 B
Ruby

class Pacvim < Formula
desc "Learn vim commands via a game"
homepage "https://github.com/jmoon018/PacVim"
url "https://github.com/jmoon018/PacVim/archive/v1.1.1.tar.gz"
sha256 "c869c5450fbafdfe8ba8a8a9bba3718775926f276f0552052dcfa090d21acb28"
head "https://github.com/jmoon018/PacVim.git"
bottle do
sha1 "72ab787738913d09abc2221f37a8ec9c6da31d5a" => :yosemite
sha1 "8fab0bdb05fbd24bb0282e68d805fe2e0eaf0908" => :mavericks
sha1 "c38b89d4de35684122e4ab14ca605fdf4977a7b5" => :mountain_lion
end
needs :cxx11
def install
ENV.cxx11
system "make", "install", "PREFIX=#{prefix}"
end
end