blob: a8403f40b544951c39c60211eb21760dd0a8b16a (
plain)
| 1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
 | require 'formula'
class Kes < Formula
  homepage 'https://github.com/epilnivek/kes'
  url 'https://github.com/epilnivek/kes/tarball/v0.9'
  md5 '6ea08b27d49685a261e8de74c8428158'
  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
 |