require 'formula' class AndroidNdk < Formula url 'http://dl.google.com/android/ndk/android-ndk-r6b-darwin-x86.tar.bz2' homepage 'http://developer.android.com/sdk/ndk/index.html#overview' md5 '65f2589ac1b08aabe3183f9ed1a8ce8e' version 'r6b' depends_on 'android-sdk' def install bin.mkpath prefix.install Dir['*'] %w[ ndk-build ndk-gdb ndk-stack ].each { |app| ln_s prefix+app, 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. License information at: http://developer.android.com/sdk/terms.html 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 end end