blob: a10ecf3a6a2d4e4d52b6c590934bfa6242905def (
plain)
| 1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
 | require 'formula'
class Ispell < Formula
  homepage 'http://lasr.cs.ucla.edu/geoff/ispell.html'
  url 'http://www.lasr.cs.ucla.edu/geoff/tars/ispell-3.3.02.tar.gz'
  md5 '12087d7555fc2b746425cd167af480fe'
  skip_clean :all
  def install
    ENV.deparallelize
    ENV.no_optimization
    # No configure script, so do this all manually
    cp "local.h.macos", "local.h"
    chmod 0644, "local.h"
    inreplace "local.h" do |s|
      s.gsub! '/usr/local', prefix
      s.gsub! '/man/man', '/share/man/man'
    end
    chmod 0644, "correct.c"
    inreplace "correct.c", "getline", "getline_ispell"
    system "make config.sh"
    chmod 0644, "config.sh"
    inreplace "config.sh" do |s|
      s.gsub! '/usr/share/dict', "#{share}/dict"
      s.gsub! /yacc/, "/usr/bin/yacc"
    end
    lib.mkpath
    system "make all"
    system "make install"
  end
end
 |