aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Formula/kes.rb
blob: 51209c14dfc25a946320e189539b28b0d8a55482 (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 'http://github.com/epilnivek/kes'

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