41 lines
1.1 KiB
Ruby
41 lines
1.1 KiB
Ruby
require 'formula'
|
|
|
|
class AndroidNdk < Formula
|
|
homepage 'http://developer.android.com/sdk/ndk/index.html'
|
|
url 'http://dl.google.com/android/ndk/android-ndk-r8b-darwin-x86.tar.bz2'
|
|
version 'r8b'
|
|
sha1 '497ba01810c881c0655c9b0759d529adf9e8cf52'
|
|
|
|
depends_on 'android-sdk'
|
|
|
|
def install
|
|
bin.mkpath
|
|
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| ln_s ndk_exec, bin+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
|