homebrew-core/Formula/joe.rb
Mike Arthur b3900f37dd Be nicer to Sourceforge by using their gateway server
Thus we download from the best mirror always.
2009-12-05 15:09:31 +00:00

12 lines
332 B
Ruby

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