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'
|
2012-09-03 18:33:56 +00:00
|
|
|
sha1 '07cd04ecd000a8bcb1b091c7573e095b1af64563'
|
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-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
|