1
0
mirror of https://gitlab.com/fdroid/fdroidserver.git synced 2024-09-20 11:50:37 +02:00
fdroidserver/buildserver/cookbooks/android-ndk/recipes/default.rb

18 lines
311 B
Ruby
Raw Normal View History

ndk_loc = node[:settings][:ndk_loc]
script "setup-android-ndk" do
timeout 14400
interpreter "bash"
user node[:settings][:user]
cwd "/tmp"
code "
2013-05-25 14:55:16 +02:00
tar jxvf /vagrant/cache/android-ndk-r8e-linux-x64.tar.bz2
2013-04-02 23:32:49 +02:00
mv android-ndk-r8e #{ndk_loc}
"
not_if do
File.exists?("#{ndk_loc}")
end
end