aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Formula/editorconfig.rb
blob: c14c7552a3d361f03ff7989da132cad452ca356c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
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