2010-04-02 21:22:54 +00:00
|
|
|
require 'formula'
|
|
|
|
|
2011-03-10 05:11:03 +00:00
|
|
|
class AndroidNdk < Formula
|
2011-07-14 20:59:31 +00:00
|
|
|
url 'http://dl.google.com/android/ndk/android-ndk-r6-darwin-x86.tar.bz2'
|
2010-05-22 19:37:56 +00:00
|
|
|
homepage 'http://developer.android.com/sdk/ndk/index.html#overview'
|
2011-07-14 20:59:31 +00:00
|
|
|
md5 'a154905e49a6246abd823b75b6eda738'
|
|
|
|
version 'r6'
|
2010-04-02 21:22:54 +00:00
|
|
|
|
|
|
|
depends_on 'android-sdk'
|
|
|
|
|
|
|
|
def install
|
2011-09-22 07:04:27 +00:00
|
|
|
bin.mkpath
|
2010-04-02 21:22:54 +00:00
|
|
|
prefix.install Dir['*']
|
2011-09-22 07:04:27 +00:00
|
|
|
%w[ ndk-build ndk-gdb ndk-stack ].each { |app| ln_s prefix+app, bin+app }
|
2010-04-02 21:22:54 +00:00
|
|
|
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:
|
2010-05-22 19:37:56 +00:00
|
|
|
http://developer.android.com/sdk/ndk/index.html#requirements
|
2010-04-02 21:22:54 +00:00
|
|
|
|
|
|
|
For more documentation on Android NDK, please check:
|
|
|
|
#{prefix}/docs
|
|
|
|
EOS
|
|
|
|
end
|
|
|
|
end
|