homebrew-core/Formula/lxsplit.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
341 B
Ruby

require 'formula'
class Lxsplit < Formula
homepage 'http://lxsplit.sourceforge.net/'
url 'https://downloads.sourceforge.net/lxsplit/lxsplit-0.2.4.tar.gz'
sha1 '4e906cb95fcc756ff8c5d58c103e2659493052e0'
def install
bin.mkpath
inreplace 'Makefile', '/usr/local/bin', bin
system "make"
system "make install"
end
end