2009-10-29 17:54:34 +00:00
|
|
|
require 'formula'
|
|
|
|
|
2011-03-10 05:11:03 +00:00
|
|
|
class Joe < Formula
|
2009-11-12 13:09:19 +00:00
|
|
|
url 'http://downloads.sourceforge.net/project/joe-editor/JOE%20sources/joe-3.7/joe-3.7.tar.gz'
|
2009-10-29 17:54:34 +00:00
|
|
|
homepage 'http://joe-editor.sourceforge.net/index.html'
|
2012-09-03 18:33:56 +00:00
|
|
|
sha1 '54398578886d4a3d325aece52c308a939d31101d'
|
2009-10-29 17:54:34 +00:00
|
|
|
|
|
|
|
def install
|
|
|
|
system "./configure", "--prefix=#{prefix}"
|
|
|
|
system "make install"
|
|
|
|
end
|
|
|
|
end
|