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