homebrew-core/Formula/kes.rb
Andrew Janke 3ad9a0896f Change github /tarball/ URLs to /archive/ for formulae A-K
The `brew audit` check complains about the older /tarball/ URL scheme. Update
formulae to use the new /archive/ URL and update the SHA to match.

Closes Homebrew/homebrew#18813.

Signed-off-by: Adam Vandenberg <flangy@gmail.com>
2013-03-28 21:02:11 -07:00

18 lines
445 B
Ruby

require 'formula'
class Kes < Formula
homepage 'https://github.com/epilnivek/kes'
url 'https://github.com/epilnivek/kes/archive/v0.9.tar.gz'
sha1 '483ff8c76372bc12a852ae10d8d5edc7591cfe09'
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