homebrew-core/Formula/kes.rb

19 lines
438 B
Ruby
Raw Normal View History

require 'formula'
2011-03-10 05:11:03 +00:00
class Kes < Formula
homepage 'https://github.com/epilnivek/kes'
2012-02-19 17:51:06 +00:00
url 'https://github.com/epilnivek/kes/tarball/v0.9'
sha1 '07cd04ecd000a8bcb1b091c7573e095b1af64563'
2012-02-19 17:51:06 +00:00
head 'https://github.com/epilnivek/kes.git'
depends_on 'readline'
def install
system "./configure", "--prefix=#{prefix}", "--mandir=#{man}", "--with-readline"
system "make"
bin.install 'es'
man1.install 'doc/es.1'
end
end