aboutsummaryrefslogtreecommitdiffstats
path: root/Library
diff options
context:
space:
mode:
authorDavid Christenson2014-07-27 22:54:45 -0600
committerMike McQuaid2014-07-28 09:53:58 +0100
commitb8250a9105a6c66abf4c0f37e75e5a2f367bba9f (patch)
treea7e940f18c3c3eea65d0179eaec57569d13727ac /Library
parente18d4a6250f99b9856b230bc05883defd02304d3 (diff)
downloadhomebrew-b8250a9105a6c66abf4c0f37e75e5a2f367bba9f.tar.bz2
cctools-headers 855
Update to latest Apple release, change single quotes to double. Closes #31175. Signed-off-by: Mike McQuaid <mike@mikemcquaid.com>
Diffstat (limited to 'Library')
-rw-r--r--Library/Formula/cctools-headers.rb18
1 files changed, 9 insertions, 9 deletions
diff --git a/Library/Formula/cctools-headers.rb b/Library/Formula/cctools-headers.rb
index ee8eda9b2..33f2ef1b5 100644
--- a/Library/Formula/cctools-headers.rb
+++ b/Library/Formula/cctools-headers.rb
@@ -1,16 +1,16 @@
-require 'formula'
+require "formula"
# The system versions are too old to build ld64
class CctoolsHeaders < Formula
- homepage 'https://opensource.apple.com/'
- url 'https://opensource.apple.com/tarballs/cctools/cctools-845.tar.gz'
- sha1 'ea27ce1260428e12d9821a5708d83684db3a7ac4'
+ homepage "https://opensource.apple.com/"
+ url "https://opensource.apple.com/tarballs/cctools/cctools-855.tar.gz"
+ sha1 "b6997939aa9f4f3c4ac70ec819e719330dcd7bcb"
keg_only :provided_by_osx
- resource 'headers' do
- url 'https://opensource.apple.com/tarballs/xnu/xnu-2422.90.20.tar.gz'
- sha1 '4aa6b80cc0ff6f9b27825317922b51c5f33d5bae'
+ resource "headers" do
+ url "https://opensource.apple.com/tarballs/xnu/xnu-2422.90.20.tar.gz"
+ sha1 "4aa6b80cc0ff6f9b27825317922b51c5f33d5bae"
end
def install
@@ -18,9 +18,9 @@ class CctoolsHeaders < Formula
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
+ (prefix/"usr").rmtree
# ld64 requires an updated mach/machine.h to build
- resource('headers').stage {(include/'mach').install 'osfmk/mach/machine.h'}
+ resource("headers").stage {(include/"mach").install "osfmk/mach/machine.h"}
end
end