aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Formula/kes.rb
blob: 9d36465232c76e54bd030ed6662271b9a3f70c78 (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