blob: 0adfa74eb897301af7e9b11015099142c13885cc (
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/tarball/v0.10.0'
sha1 'afae2e81cf130a0d1f9fbbcdd5e2ef5953af8bdc'
depends_on 'cmake' => :build
def install
system "cmake", ".", "-DCMAKE_INSTALL_PREFIX:PATH=#{prefix}"
system "make install"
end
def test
system "editorconfig"
end
end
|