2010-03-31 18:56:01 +00:00
|
|
|
require 'formula'
|
|
|
|
|
2011-03-10 05:11:03 +00:00
|
|
|
class Kes < Formula
|
2010-11-10 18:16:28 +00:00
|
|
|
homepage 'https://github.com/epilnivek/kes'
|
2012-02-19 17:51:06 +00:00
|
|
|
url 'https://github.com/epilnivek/kes/tarball/v0.9'
|
|
|
|
md5 '6ea08b27d49685a261e8de74c8428158'
|
|
|
|
|
2012-02-17 04:29:48 +00:00
|
|
|
head 'https://github.com/epilnivek/kes.git'
|
2010-03-31 18:56:01 +00:00
|
|
|
|
2012-02-19 21:41:03 +00:00
|
|
|
depends_on 'readline'
|
|
|
|
|
2010-03-31 18:56:01 +00:00
|
|
|
def install
|
2012-02-19 21:41:03 +00:00
|
|
|
system "./configure", "--prefix=#{prefix}", "--mandir=#{man}", "--with-readline"
|
2010-03-31 18:56:01 +00:00
|
|
|
system "make"
|
|
|
|
bin.install 'es'
|
|
|
|
man1.install 'doc/es.1'
|
|
|
|
end
|
|
|
|
end
|