homebrew-core/Formula/clean.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

13 lines
312 B
Ruby

require 'formula'
class Clean < Formula
homepage 'http://clean.sourceforge.net/'
url 'https://downloads.sourceforge.net/project/clean/clean/3.4/clean-3.4.tar.bz2'
sha1 '3ce2e455eadec2f212e40102137a3c70ffa915c9'
def install
system 'make'
bin.install 'clean'
man1.install 'clean.1'
end
end