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'
|
2013-03-29 01:03:20 +00:00
|
|
|
url 'https://github.com/epilnivek/kes/archive/v0.9.tar.gz'
|
|
|
|
sha1 '483ff8c76372bc12a852ae10d8d5edc7591cfe09'
|
2012-02-19 17:51:06 +00:00
|
|
|
|
2012-02-17 04:29:48 +00:00
|
|
|
head 'https://github.com/epilnivek/kes.git'
|
2010-03-31 18:56:01 +00:00
|
|
|
|
2012-11-11 03:12:26 +00:00
|
|
|
depends_on 'readline'
|
2012-02-19 21:41:03 +00:00
|
|
|
|
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
|