homebrew-core/Formula/scons.rb

19 lines
512 B
Ruby
Raw Normal View History

require 'formula'
class Scons <Formula
url 'http://prdownloads.sourceforge.net/scons/scons-2.0.0.final.0.tar.gz'
homepage 'http://www.scons.org'
md5 'c2e4c2700cac507caa93d4a3adbbf56f'
def install
2010-02-21 04:13:19 +00:00
man1.install gzip('scons-time.1')
man1.install gzip('scons.1')
man1.install gzip('sconsign.1')
system "python", "setup.py", "install",
"--prefix=#{prefix}",
"--standalone-lib",
"--no-version-script", "--no-install-man"
end
end