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

12 lines
343 B
Ruby

require 'formula'
class Joe < Formula
homepage 'http://joe-editor.sourceforge.net/index.html'
url 'https://downloads.sourceforge.net/project/joe-editor/JOE%20sources/joe-3.7/joe-3.7.tar.gz'
sha1 '54398578886d4a3d325aece52c308a939d31101d'
def install
system "./configure", "--prefix=#{prefix}"
system "make install"
end
end