homebrew-core/Formula/editorconfig.rb
Hong Xu f8138cf393 EditorConfig 0.11.0
Closes Homebrew/homebrew#18448.

Signed-off-by: Adam Vandenberg <flangy@gmail.com>
2013-03-13 06:22:08 -07:00

18 lines
405 B
Ruby

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