2013-03-11 00:37:52 +00:00
|
|
|
# The system versions are too old to build ld64
|
2013-03-11 00:33:21 +00:00
|
|
|
class CctoolsHeaders < Formula
|
2015-05-19 00:00:59 +00:00
|
|
|
desc "cctools-headers via Apple"
|
2014-07-28 04:54:45 +00:00
|
|
|
homepage "https://opensource.apple.com/"
|
|
|
|
url "https://opensource.apple.com/tarballs/cctools/cctools-855.tar.gz"
|
2015-08-03 12:55:31 +00:00
|
|
|
sha256 "751748ddf32c8ea84c175f32792721fa44424dad6acbf163f84f41e9617dbc58"
|
2013-03-11 00:33:21 +00:00
|
|
|
|
|
|
|
keg_only :provided_by_osx
|
|
|
|
|
2014-07-28 04:54:45 +00:00
|
|
|
resource "headers" do
|
|
|
|
url "https://opensource.apple.com/tarballs/xnu/xnu-2422.90.20.tar.gz"
|
2015-08-03 12:55:31 +00:00
|
|
|
sha256 "7bf3c6bc2f10b99e57b996631a7747b79d1e1684df719196db1e5c98a5585c23"
|
2013-08-07 05:39:56 +00:00
|
|
|
end
|
|
|
|
|
2013-03-11 00:33:21 +00:00
|
|
|
def install
|
|
|
|
# only supports DSTROOT, not PREFIX
|
|
|
|
inreplace "include/Makefile", "/usr/include", "/include"
|
|
|
|
system "make", "installhdrs", "DSTROOT=#{prefix}", "RC_ProjectSourceVersion=#{version}"
|
|
|
|
# installs some headers we don't need to DSTROOT/usr/local/include
|
2014-07-28 04:54:45 +00:00
|
|
|
(prefix/"usr").rmtree
|
2013-03-11 00:33:21 +00:00
|
|
|
|
2013-08-07 05:39:56 +00:00
|
|
|
# ld64 requires an updated mach/machine.h to build
|
2015-08-03 12:55:31 +00:00
|
|
|
resource("headers").stage { (include/"mach").install "osfmk/mach/machine.h" }
|
2013-03-11 00:33:21 +00:00
|
|
|
end
|
|
|
|
end
|