13 lines
219 B
Ruby
13 lines
219 B
Ruby
|
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
|