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"
|
2016-06-20 12:33:27 +00:00
|
|
|
homepage "https://developer.android.com/ndk/index.html"
|
2016-10-08 15:50:07 +00:00
|
|
|
url "https://dl.google.com/android/repository/android-ndk-r13-darwin-x86_64.zip"
|
|
|
|
sha256 "542ec1a2ea367aaa96a85072a1fa9496505da33888971cc5f46abb80ce5de9e3"
|
2016-10-12 18:34:03 +00:00
|
|
|
version "r13"
|
|
|
|
version_scheme 1
|
2014-06-17 09:10:05 +00:00
|
|
|
|
2015-10-23 07:38:38 +00:00
|
|
|
bottle :unneeded
|
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
|
2016-09-24 15:45:48 +00:00
|
|
|
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
|
|
|
|
2015-11-01 22:13:08 +00:00
|
|
|
conflicts_with "crystax-ndk",
|
2016-09-24 15:45:48 +00:00
|
|
|
:because => "both install `ndk-build`, `ndk-gdb` and `ndk-stack` binaries"
|
2015-11-01 22:13:08 +00:00
|
|
|
|
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
|
|
|
|
2014-09-12 12:02:03 +00:00
|
|
|
# Now we can install both 64-bit and 32-bit targeting toolchains
|
2016-03-23 15:58:12 +00:00
|
|
|
prefix.install Dir["*"]
|
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
|
2016-03-23 15:58:12 +00:00
|
|
|
%w[ndk-build ndk-depends ndk-gdb ndk-stack ndk-which].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
|
2016-08-19 15:32:37 +00:00
|
|
|
|
|
|
|
test do
|
|
|
|
(testpath/"test.c").write("int main() { return 0; }")
|
|
|
|
cc = Utils.popen_read("#{bin}/ndk-which gcc").strip
|
|
|
|
system cc, "-c", "test.c", "-o", "test"
|
|
|
|
end
|
2010-04-02 21:22:54 +00:00
|
|
|
end
|