blob: 004084a53d7d5741e1717d00248b079639a6b2f0 (
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
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
|
class CrystaxNdk < Formula
homepage "https://www.crystax.net/android/ndk"
version "10.1.0"
if MacOS.prefer_64_bit?
url "https://www.crystax.net/download/crystax-ndk-#{version}-darwin-x86_64.7z"
sha1 "dc125ae803ede7d4b68ac9d57b30909bfcb1a8d6"
else
url "https://www.crystax.net/download/crystax-ndk-#{version}-darwin-x86.7z"
sha1 "d502f57ea314e5a572387b4492c297f77e68a982"
end
depends_on "android-sdk" => :recommended
def install
bin.mkpath
if MacOS.prefer_64_bit?
arch = :x86_64
else
arch = :x86
end
system "7z", "x", "crystax-ndk-#{version}-darwin-#{arch}.7z"
prefix.install Dir["crystax-ndk-#{version}/*"]
# 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
test do
system "#{bin}/ndk-build", "--version"
system "#{bin}/ndk-gdb", "--help"
end
def caveats; <<-EOS.undent
We agreed to the CrystaX NDK License Agreement for you by downloading the NDK.
If this is unacceptable you should uninstall.
License information at:
https://www.crystax.net/android/ndk#license
For more documentation on CrystaX NDK, please check:
#{homepage}
EOS
end
end
|