homebrew-core/Formula/joe.rb
2011-03-12 11:55:09 -08:00

12 lines
333 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