2009-10-13 01:50:41 +00:00
|
|
|
require 'formula'
|
|
|
|
|
2011-03-10 05:11:03 +00:00
|
|
|
class Scons < Formula
|
2009-10-13 01:50:41 +00:00
|
|
|
homepage 'http://www.scons.org'
|
2014-03-16 03:18:12 +00:00
|
|
|
url 'https://downloads.sourceforge.net/scons/scons-2.3.1.tar.gz'
|
|
|
|
sha1 '775e715e49fe5fd8e1d29551a296fdc9267509e7'
|
2009-10-13 01:50:41 +00:00
|
|
|
|
2014-02-22 19:10:32 +00:00
|
|
|
bottle do
|
2014-03-19 00:09:41 +00:00
|
|
|
cellar :any
|
|
|
|
revision 3
|
|
|
|
sha1 "e95727216cded8197acd0cf2d77a078ba1a4ed05" => :mavericks
|
|
|
|
sha1 "b8ffa3da1b9378944a5b97c2783c1a8593331539" => :mountain_lion
|
|
|
|
sha1 "c4d0bd20be297fc6d3eb615abe22b78212a91655" => :lion
|
2014-02-22 19:10:32 +00:00
|
|
|
end
|
|
|
|
|
2009-10-13 01:50:41 +00:00
|
|
|
def install
|
2014-02-12 04:29:42 +00:00
|
|
|
bin.mkpath # Script won't create this if it doesn't already exist
|
2010-09-19 18:15:10 +00:00
|
|
|
man1.install gzip('scons-time.1', 'scons.1', 'sconsign.1')
|
2013-11-01 16:31:33 +00:00
|
|
|
system "/usr/bin/python", "setup.py", "install",
|
2011-09-01 04:25:42 +00:00
|
|
|
"--prefix=#{prefix}",
|
|
|
|
"--standalone-lib",
|
2012-07-06 23:19:40 +00:00
|
|
|
# SCons gets handsy with sys.path---`scons-local` is one place it
|
|
|
|
# will look when all is said and done.
|
2013-11-01 16:31:33 +00:00
|
|
|
"--install-lib=#{libexec}/scons-local",
|
|
|
|
"--install-scripts=#{bin}",
|
2012-07-06 23:19:40 +00:00
|
|
|
"--install-data=#{libexec}",
|
2011-09-01 04:25:42 +00:00
|
|
|
"--no-version-script", "--no-install-man"
|
2013-11-01 16:31:33 +00:00
|
|
|
|
|
|
|
# Re-root scripts to libexec so they can import SCons and symlink back into
|
|
|
|
# bin. Similar tactics are used in the duplicity formula.
|
|
|
|
bin.children.each do |p|
|
|
|
|
mv p, "#{libexec}/#{p.basename}.py"
|
|
|
|
bin.install_symlink "#{libexec}/#{p.basename}.py" => p.basename
|
2012-07-06 23:19:40 +00:00
|
|
|
end
|
2009-10-13 01:50:41 +00:00
|
|
|
end
|
|
|
|
end
|