2011-03-10 05:11:03 +00:00
|
|
|
class AndroidNdk < Formula
|
2015-05-19 00:00:59 +00:00
|
|
|
desc "Android native-code language toolset"
|
2015-03-10 14:48:33 +00:00
|
|
|
homepage "https://developer.android.com/sdk/ndk/index.html"
|
2015-05-21 22:39:47 +00:00
|
|
|
url "https://dl.google.com/android/ndk/android-ndk-r10e-darwin-x86_64.bin"
|
|
|
|
sha256 "728c309e606f63101f1258c9d3d579b80ac74fe74c511ebb71f460ce5c5d084e"
|
2014-06-17 09:10:05 +00:00
|
|
|
|
2015-05-21 22:39:47 +00:00
|
|
|
version "r10e"
|
2014-10-20 22:49:49 +00:00
|
|
|
|
2015-05-21 22:39:47 +00:00
|
|
|
# As of r10e, only a 64-bit version is provided
|
|
|
|
depends_on :arch => :x86_64
|
2014-09-12 12:59:43 +00:00
|
|
|
depends_on "android-sdk" => :recommended
|
2010-04-02 21:22:54 +00:00
|
|
|
|
|
|
|
def install
|
2011-09-22 07:04:27 +00:00
|
|
|
bin.mkpath
|
2014-08-29 23:54:43 +00:00
|
|
|
|
2015-05-21 22:39:47 +00:00
|
|
|
chmod 0755, "./android-ndk-#{version}-darwin-x86_64.bin"
|
|
|
|
system "./android-ndk-#{version}-darwin-x86_64.bin"
|
2014-08-29 23:54:43 +00:00
|
|
|
|
2014-09-12 12:02:03 +00:00
|
|
|
# Now we can install both 64-bit and 32-bit targeting toolchains
|
2014-12-09 07:09:20 +00:00
|
|
|
prefix.install Dir["android-ndk-#{version}/*"]
|
2011-09-30 07:19:37 +00:00
|
|
|
|
|
|
|
# Create a dummy script to launch the ndk apps
|
2014-09-12 12:59:43 +00:00
|
|
|
ndk_exec = prefix+"ndk-exec.sh"
|
2014-03-25 15:54:36 +00:00
|
|
|
ndk_exec.write <<-EOS.undent
|
2011-09-30 07:19:37 +00:00
|
|
|
#!/bin/sh
|
|
|
|
BASENAME=`basename $0`
|
|
|
|
EXEC="#{prefix}/$BASENAME"
|
|
|
|
test -f "$EXEC" && exec "$EXEC" "$@"
|
2012-05-29 04:03:13 +00:00
|
|
|
EOS
|
2014-03-25 15:54:36 +00:00
|
|
|
ndk_exec.chmod 0755
|
|
|
|
%w[ndk-build ndk-gdb ndk-stack].each { |app| bin.install_symlink ndk_exec => app }
|
2010-04-02 21:22:54 +00:00
|
|
|
end
|
|
|
|
|
2012-05-29 04:03:13 +00:00
|
|
|
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.
|
2010-04-02 21:22:54 +00:00
|
|
|
|
2012-05-29 04:03:13 +00:00
|
|
|
License information at:
|
2015-03-10 14:48:33 +00:00
|
|
|
https://developer.android.com/sdk/terms.html
|
2010-04-02 21:22:54 +00:00
|
|
|
|
2012-05-29 04:03:13 +00:00
|
|
|
Software and System requirements at:
|
2015-03-10 14:48:33 +00:00
|
|
|
https://developer.android.com/sdk/ndk/index.html#requirements
|
2010-04-02 21:22:54 +00:00
|
|
|
|
2012-05-29 04:03:13 +00:00
|
|
|
For more documentation on Android NDK, please check:
|
|
|
|
#{prefix}/docs
|
|
|
|
EOS
|
2010-04-02 21:22:54 +00:00
|
|
|
end
|
|
|
|
end
|