homebrew-core/Formula/android-ndk.rb

59 lines
1.7 KiB
Ruby
Raw Normal View History

2014-09-12 12:59:43 +00:00
require "formula"
2011-03-10 05:11:03 +00:00
class AndroidNdk < Formula
2014-09-12 12:59:43 +00:00
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"
else
url "http://dl.google.com/android/ndk/android-ndk-r10c-darwin-x86.bin"
sha1 "b083f9a1a4dd66d55ced8ea41eea6a0a91ea1ac9"
end
version "r10c"
2014-09-12 12:59:43 +00:00
depends_on "android-sdk" => :recommended
def install
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"
else
system "chmod", "a+x", "./android-ndk-r10c-darwin-x86.bin"
system "./android-ndk-r10c-darwin-x86.bin"
end
# Now we can install both 64-bit and 32-bit targeting toolchains
prefix.install Dir["android-ndk-r10c/*"]
# 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
#!/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 }
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.
2012-05-29 04:03:13 +00:00
License information at:
http://developer.android.com/sdk/terms.html
2012-05-29 04:03:13 +00:00
Software and System requirements at:
http://developer.android.com/sdk/ndk/index.html#requirements
2012-05-29 04:03:13 +00:00
For more documentation on Android NDK, please check:
#{prefix}/docs
EOS
end
end