homebrew-core/Formula/lci.rb
Jaime Marquínez Ferrándiz 74c83fa9f6 Batch convert http download urls from SourceForge to https
Signed-off-by: Adam Vandenberg <flangy@gmail.com>
2014-03-02 09:16:53 -08:00

14 lines
376 B
Ruby

require 'formula'
class Lci < Formula
homepage 'http://lci.sourceforge.net/'
url 'https://downloads.sourceforge.net/project/lci/lci/0.6/lci-0.6.tar.gz'
sha1 '0b03f4c2d47a3e217f760e371ec60bed8b477b02'
conflicts_with 'lolcode', :because => 'both install `lci` binaries'
def install
system "./configure", "--prefix=#{prefix}"
system "make install"
end
end