aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Formula/gnu-typist.rb
blob: b5a3c5915fa774438db9367accd9a0654340ad07 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
require 'formula'

class GnuTypist < Formula
  homepage 'http://www.gnu.org/software/gtypist/'
  url 'http://ftpmirror.gnu.org/gtypist/gtypist-2.9.1.tar.gz'
  mirror 'http://ftp.gnu.org/gnu/gtypist/gtypist-2.9.1.tar.gz'
  sha256 'a5885654aab74027999a67a9bbd7c3b6823479f89a6f1439244bf9c5536fb67d'

  def install
    system "./configure", "--disable-dependency-tracking", "--prefix=#{prefix}"
    system "make install"
  end
end