1
0
mirror of https://gitlab.com/fdroid/fdroidserver.git synced 2024-09-21 04:10:37 +02:00
fdroidserver/buildserver/cookbooks/android-ndk/recipes/default.rb
Ciaran Gultnieks d54031294a Use ndk r8e
2013-04-02 22:32:49 +01:00

18 lines
356 B
Ruby

ndk_loc = node[:settings][:ndk_loc]
script "setup-android-ndk" do
interpreter "bash"
user node[:settings][:user]
cwd "/tmp"
code "
wget http://dl.google.com/android/ndk/android-ndk-r8e-linux-x86.tar.bz2
tar jxvf android-ndk-r8e-linux-x86.tar.bz2
mv android-ndk-r8e #{ndk_loc}
"
not_if do
File.exists?("#{ndk_loc}")
end
end