blob: c68144ab6f7c92cb93e8353c860488c69b6c1eca (
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'
  sha1 '07cd04ecd000a8bcb1b091c7573e095b1af64563'
  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
  |