diff options
| author | Stuart Eichert | 2014-12-08 15:09:53 -0800 |
|---|---|---|
| committer | Jack Nagel | 2014-12-09 02:07:59 -0500 |
| commit | e79cab3b6343f8f6bb4aa5034f6d4f91900e331b (patch) | |
| tree | 597dcbd6ec0b0f72279028d98d45404e8a83b204 /Library/Formula | |
| parent | 50b1b6ce89105884de38015acd1e34668aae6e4b (diff) | |
| download | homebrew-e79cab3b6343f8f6bb4aa5034f6d4f91900e331b.tar.bz2 | |
android-ndk r10d
Closes #34808.
Signed-off-by: Jack Nagel <jacknagel@gmail.com>
Diffstat (limited to 'Library/Formula')
| -rw-r--r-- | Library/Formula/android-ndk.rb | 20 |
1 files changed, 10 insertions, 10 deletions
diff --git a/Library/Formula/android-ndk.rb b/Library/Formula/android-ndk.rb index 1191921ed..1f07efcde 100644 --- a/Library/Formula/android-ndk.rb +++ b/Library/Formula/android-ndk.rb @@ -4,14 +4,14 @@ class AndroidNdk < Formula homepage "http://developer.android.com/sdk/ndk/index.html" if MacOS.prefer_64_bit? - url "http://dl.google.com/android/ndk/android-ndk-r10c-darwin-x86_64.bin" - sha1 "a136ca2ad87771422c2cfa9474196cd29ffd9bb1" + url "http://dl.google.com/android/ndk/android-ndk-r10d-darwin-x86_64.bin" + sha1 "6b89cb0c84e2d2bd802a5b78540327c1b3c2d7b8" else - url "http://dl.google.com/android/ndk/android-ndk-r10c-darwin-x86.bin" - sha1 "b083f9a1a4dd66d55ced8ea41eea6a0a91ea1ac9" + url "http://dl.google.com/android/ndk/android-ndk-r10d-darwin-x86.bin" + sha1 "fc1f9593eb9669076c25381322a1386869ac02f0" end - version "r10c" + version "r10d" depends_on "android-sdk" => :recommended @@ -19,15 +19,15 @@ class AndroidNdk < Formula bin.mkpath if MacOS.prefer_64_bit? - system "chmod", "a+x", "./android-ndk-r10c-darwin-x86_64.bin" - system "./android-ndk-r10c-darwin-x86_64.bin" + system "chmod", "a+x", "./android-ndk-r10d-darwin-x86_64.bin" + system "./android-ndk-r10d-darwin-x86_64.bin" else - system "chmod", "a+x", "./android-ndk-r10c-darwin-x86.bin" - system "./android-ndk-r10c-darwin-x86.bin" + system "chmod", "a+x", "./android-ndk-r10d-darwin-x86.bin" + system "./android-ndk-r10d-darwin-x86.bin" end # Now we can install both 64-bit and 32-bit targeting toolchains - prefix.install Dir["android-ndk-r10c/*"] + prefix.install Dir["android-ndk-r10d/*"] # Create a dummy script to launch the ndk apps ndk_exec = prefix+"ndk-exec.sh" |
