aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Formula/fsh.rb
blob: e04140eb012e2120ff9a1f7ceaf58852e8041b9a (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
  url 'http://www.lysator.liu.se/fsh/fsh-1.2.tar.gz'
  homepage 'http://www.lysator.liu.se/fsh/'
  md5 '74d7fc65044d1c9c27c6e9edbbde9c68'

  def install
    # FCNTL was deprecated and needs to be changed to fcntl
    system "find . -type f -exec sed -i \"\" 's/FCNTL/fcntl/g' {} \\;"

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

    cd bin do
      inreplace ["fsh", "fshd", "in.fshd"],
          "#! /usr/local/bin/python", "#!/usr/bin/env python"
    end
  end
end