homebrew-core/Formula/cctools-headers.rb
2015-12-19 01:37:12 -05:00

25 lines
971 B
Ruby

# The system versions are too old to build ld64
class CctoolsHeaders < Formula
desc "cctools headers via Apple"
homepage "https://opensource.apple.com/"
url "https://opensource.apple.com/tarballs/cctools/cctools-855.tar.gz"
sha256 "751748ddf32c8ea84c175f32792721fa44424dad6acbf163f84f41e9617dbc58"
keg_only :provided_by_osx
resource "headers" do
url "https://opensource.apple.com/tarballs/xnu/xnu-2422.90.20.tar.gz"
sha256 "7bf3c6bc2f10b99e57b996631a7747b79d1e1684df719196db1e5c98a5585c23"
end
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
(prefix/"usr").rmtree
# ld64 requires an updated mach/machine.h to build
resource("headers").stage { (include/"mach").install "osfmk/mach/machine.h" }
end
end