aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Formula/kes.rb
blob: 348283297632643e1d106bc63dc220c283e2bb9c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
require 'formula'

class Kes <Formula
  head 'git://github.com/epilnivek/kes.git'
  homepage 'https://github.com/epilnivek/kes'

  def install
    system "make"
    bin.install 'es'
    man1.install 'doc/es.1'
  end
end