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

class Scsh < Formula
  url 'http://ftp.scsh.net/pub/scsh/0.6/scsh-0.6.7.tar.gz'
  homepage 'http://www.scsh.net/'
  sha1 'a1eaf0d0593e14914824898a0c3ec166429affd7'

  def install
    # will not build 64-bit
    ENV.m32
    # build system is not parallel-safe
    ENV.deparallelize
    system "./configure", "--disable-debug", "--disable-dependency-tracking",
                          "--prefix=#{prefix}",
                          "--infodir=#{info}",
                          "--mandir=#{man}"
    system "make install"
  end
end