homebrew-core/Formula/crystax-ndk.rb
Dmitry Moskalchuk 90dd18078a crystax-ndk 10.2.1
Version bump

Signed-off-by: Dmitry Moskalchuk <dm@crystax.net>

Closes Homebrew/homebrew#42034.

Signed-off-by: Dominyk Tiller <dominyktiller@gmail.com>
2015-07-24 16:45:28 +01:00

58 lines
1.5 KiB
Ruby

class CrystaxNdk < Formula
desc "Drop-in replacement for Google's Android NDK"
homepage "https://www.crystax.net/android/ndk"
version "10.2.1"
if MacOS.prefer_64_bit?
url "https://www.crystax.net/download/crystax-ndk-#{version}-darwin-x86_64.7z"
sha256 "1503eec2b883ffbe8f24bcfd2f3d47579ff1c9ce84be3612d8cfe5339aa0df40"
else
url "https://www.crystax.net/download/crystax-ndk-#{version}-darwin-x86.7z"
sha256 "a46e5741d42406c39e85c79bfac895374b1831c20e16cfa5ea57d705c52dc1f1"
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