3572daf82c
Kes is a fork of the es shell created by Paul Haahr and Byron Rakitzis. It is based on the rc command interpreter, part of the Plan 9 operating system.
12 lines
219 B
Ruby
12 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
|