blob: 23609938c195c51b38a758504d41d75ad974e5b5 (
plain)
| 1
2
3
4
5
6
7
8
9
10
11
12
 | 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
 |