3ad9a0896f
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>
18 lines
445 B
Ruby
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
|