aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Formula/android-ndk.rb
blob: b8fa148be6fd6fb4e45462252df25a3b01f6b6ef (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
require 'formula'

class AndroidNdk <Formula
  url 'http://dl.google.com/android/ndk/android-ndk-r5-darwin-x86.tar.bz2'
  homepage 'http://developer.android.com/sdk/ndk/index.html#overview'
  md5 '9dee8e4cb529a5619e9b8d1707478c32'
  version 'r5'

  depends_on 'android-sdk'

  def install
    prefix.install Dir['*']
  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