homebrew-core/Formula/editorconfig.rb
Brett Koonce 90e6db8009 editorconfig 0.11.3
Signed-off-by: Adam Vandenberg <flangy@gmail.com>
2013-03-29 09:19:42 -07:00

18 lines
411 B
Ruby

require 'formula'
class Editorconfig < Formula
homepage 'http://editorconfig.org'
url 'https://github.com/editorconfig/editorconfig-core/archive/v0.11.3.zip'
sha1 '9e0c22e863dfb8b97526812ebe7c58c46604ebb8'
depends_on 'cmake' => :build
def install
system "cmake", ".", "-DCMAKE_INSTALL_PREFIX:PATH=#{prefix}"
system "make install"
end
test do
system "#{bin}/editorconfig"
end
end