7bd947eb0b
* Use new "url" features * Use keg_only DSL * Use "skip_clean :all" DSL * Whitespace and style cleanups * Make bash invocations less silly * Use new man2-man8 helpers * Remove "FileUtils." since it is included in Formula * Use real names for deps instead of aliases * ENV.x11 now updates path, so remove that from individual brews
17 lines
495 B
Ruby
17 lines
495 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
|
|
# 4.2 segfaults in building phase
|
|
ENV.gcc_4_0
|
|
system "./configure", "--disable-debug", "--disable-dependency-tracking",
|
|
"--prefix=#{prefix}",
|
|
"--infodir=#{info}",
|
|
"--mandir=#{man}"
|
|
system "make install"
|
|
end
|
|
end
|