homebrew-core/Formula/scsh.rb

20 lines
544 B
Ruby
Raw Normal View History

require 'formula'
2011-03-10 05:11:03 +00:00
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
2012-04-08 16:13:36 +00:00
# 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