homebrew-core/Formula/scsh.rb
Misty De Meo ff12666936 scsh: Build 32-bit
scsh fails to build for 64-bit with gcc-4.2, llvm-gcc and clang, but
builds fine for a 32-bit target with any of them.

Signed-off-by: Adam Vandenberg <flangy@gmail.com>
2011-12-06 18:53:42 -08:00

17 lines
482 B
Ruby

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/'
md5 '69c88ca86a8aaaf0f87d253b99d339b5'
def install
# will not build 64-bit
ENV.m32
system "./configure", "--disable-debug", "--disable-dependency-tracking",
"--prefix=#{prefix}",
"--infodir=#{info}",
"--mandir=#{man}"
system "make install"
end
end