aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Formula/fsh.rb
blob: f8fb5ad9248f5a5404b4ade7134a8b104314cdff (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
require 'formula'

class Fsh < Formula
  homepage 'http://www.lysator.liu.se/fsh/'
  url 'http://www.lysator.liu.se/fsh/fsh-1.2.tar.gz'
  sha1 'c2f1e923076d368fbb5504dcd1d33c74024b0d1b'

  depends_on :python

  def install
    # FCNTL was deprecated and needs to be changed to fcntl
    inreplace 'fshcompat.py', 'FCNTL', 'fcntl'

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