blob: 9abcd38f9d437c51dd01e3727810b7066a245018 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
  | 
require 'formula'
class AndroidNdk < Formula
  homepage 'http://developer.android.com/sdk/ndk/index.html#overview'
  url 'http://dl.google.com/android/ndk/android-ndk-r7c-darwin-x86.tar.bz2'
  md5 '025f57feb5f32ed993a5fa7f5996477d'
  version 'r7c'
  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
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
  |