aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Formula
diff options
context:
space:
mode:
authorAdam Vandenberg2012-05-28 21:03:13 -0700
committerAdam Vandenberg2012-05-28 21:03:13 -0700
commit82738b56b4febf91dc2433d4975d49a1a49009f6 (patch)
treec75a27d71d33a84f2795244a61d0ae3aa6745df4 /Library/Formula
parenteeef465f9f63ac96d7062496fc9eb6ac5bee17d5 (diff)
downloadhomebrew-82738b56b4febf91dc2433d4975d49a1a49009f6.tar.bz2
android-ndk r8
Diffstat (limited to 'Library/Formula')
-rw-r--r--Library/Formula/android-ndk.rb30
1 files changed, 15 insertions, 15 deletions
diff --git a/Library/Formula/android-ndk.rb b/Library/Formula/android-ndk.rb
index 9abcd38f9..b2d37dbe3 100644
--- a/Library/Formula/android-ndk.rb
+++ b/Library/Formula/android-ndk.rb
@@ -1,10 +1,10 @@
require 'formula'
class AndroidNdk < Formula
- homepage 'http://developer.android.com/sdk/ndk/index.html#overview'
- url 'http://dl.google.com/android/ndk/android-ndk-r7c-darwin-x86.tar.bz2'
- md5 '025f57feb5f32ed993a5fa7f5996477d'
- version 'r7c'
+ homepage 'http://developer.android.com/sdk/ndk/index.html'
+ url 'http://dl.google.com/android/ndk/android-ndk-r8-darwin-x86.tar.bz2'
+ version 'r8'
+ md5 '81ce5de731f945692123b377afe0bad9'
depends_on 'android-sdk'
@@ -19,23 +19,23 @@ class AndroidNdk < Formula
BASENAME=`basename $0`
EXEC="#{prefix}/$BASENAME"
test -f "$EXEC" && exec "$EXEC" "$@"
- EOS
+ EOS
(ndk_exec).chmod 0755
%w[ ndk-build ndk-gdb ndk-stack ].each { |app| ln_s ndk_exec, bin+app }
end
- def caveats; <<-EOS
-We agreed to the Android NDK License Agreement for you by downloading the NDK.
-If this is unacceptable you should uninstall.
+ def caveats; <<-EOS.undent
+ We agreed to the Android NDK License Agreement for you by downloading the NDK.
+ If this is unacceptable you should uninstall.
-License information at:
-http://developer.android.com/sdk/terms.html
+ License information at:
+ http://developer.android.com/sdk/terms.html
-Software and System requirements at:
-http://developer.android.com/sdk/ndk/index.html#requirements
+ Software and System requirements at:
+ http://developer.android.com/sdk/ndk/index.html#requirements
-For more documentation on Android NDK, please check:
- #{prefix}/docs
-EOS
+ For more documentation on Android NDK, please check:
+ #{prefix}/docs
+ EOS
end
end