mirror of
https://github.com/roytam1/palemoon27.git
synced 2026-06-06 00:19:08 +00:00
55 lines
1.6 KiB
Ruby
55 lines
1.6 KiB
Ruby
require "formula"
|
|
|
|
# This is an antiquated version pinned to NDK revision r8e. That's
|
|
# the revision Mozilla's automation currently uses. We could push
|
|
# this to https://github.com/Homebrew/homebrew-versions if there's a
|
|
# problem shipping it locally.
|
|
class AndroidNdk < Formula
|
|
homepage "http://developer.android.com/sdk/ndk/index.html"
|
|
|
|
if MacOS.prefer_64_bit?
|
|
url "http://dl.google.com/android/ndk/android-ndk-r8e-darwin-x86_64.tar.bz2"
|
|
sha1 "8c8f0d7df5f160c3ef82f2f4836cbcaf18aabf68"
|
|
else
|
|
url "http://dl.google.com/android/ndk/android-ndk-r8e-darwin-x86.tar.bz2"
|
|
sha1 "60536b22b3c09015a4c7072097404a9a1316b242"
|
|
end
|
|
|
|
version "r8e"
|
|
|
|
depends_on "android-sdk" => :recommended
|
|
|
|
def install
|
|
bin.mkpath
|
|
|
|
# Now we can install both 64-bit and 32-bit targeting toolchains
|
|
prefix.install Dir["*"]
|
|
|
|
# Create a dummy script to launch the ndk apps
|
|
ndk_exec = prefix+"ndk-exec.sh"
|
|
ndk_exec.write <<-EOS.undent
|
|
#!/bin/sh
|
|
BASENAME=`basename $0`
|
|
EXEC="#{prefix}/$BASENAME"
|
|
test -f "$EXEC" && exec "$EXEC" "$@"
|
|
EOS
|
|
ndk_exec.chmod 0755
|
|
%w[ndk-build ndk-gdb ndk-stack].each { |app| bin.install_symlink ndk_exec => app }
|
|
end
|
|
|
|
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.
|
|
|
|
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
|