2010-04-02 21:22:54 +00:00
|
|
|
require 'formula'
|
|
|
|
|
2011-03-10 05:11:03 +00:00
|
|
|
class AndroidNdk < Formula
|
2011-09-30 17:25:18 +00:00
|
|
|
url 'http://dl.google.com/android/ndk/android-ndk-r6b-darwin-x86.tar.bz2'
|
2010-05-22 19:37:56 +00:00
|
|
|
homepage 'http://developer.android.com/sdk/ndk/index.html#overview'
|
2011-09-30 17:25:18 +00:00
|
|
|
md5 '65f2589ac1b08aabe3183f9ed1a8ce8e'
|
|
|
|
version 'r6b'
|
2010-04-02 21:22:54 +00:00
|
|
|
|
|
|
|
depends_on 'android-sdk'
|
|
|
|
|
|
|
|
def install
|
2011-09-22 07:04:27 +00:00
|
|
|
bin.mkpath
|
2010-04-02 21:22:54 +00:00
|
|
|
prefix.install Dir['*']
|
2011-09-30 07:19:37 +00:00
|
|
|
|
|
|
|
# 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 }
|
2010-04-02 21:22:54 +00:00
|
|
|
end
|
|
|
|
|
|
|
|
def caveats; <<-EOS
|
|
|
|
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:
|
2010-05-22 19:37:56 +00:00
|
|
|
http://developer.android.com/sdk/ndk/index.html#requirements
|
2010-04-02 21:22:54 +00:00
|
|
|
|
|
|
|
For more documentation on Android NDK, please check:
|
|
|
|
#{prefix}/docs
|
|
|
|
EOS
|
|
|
|
end
|
|
|
|
end
|