sdk_loc = node[:settings][:sdk_loc] user = node[:settings][:user] script "setup-android-sdk" do timeout 14400 interpreter "bash" user user cwd "/tmp" code " tar zxvf /vagrant/cache/android-sdk_r21.0.1-linux.tgz mv android-sdk-linux #{sdk_loc} #{sdk_loc}/tools/android update sdk --no-ui -t platform-tool #{sdk_loc}/tools/android update sdk --no-ui -t tool " not_if "test -d #{sdk_loc}" end execute "add-android-sdk-path" do user user path = "#{sdk_loc}/tools:#{sdk_loc}/platform-tools" command "echo \"export PATH=\\$PATH:#{path}\" >> /home/#{user}/.bashrc" not_if "grep #{sdk_loc} /home/#{user}/.bashrc" end script "add_build_tools" do interpreter "bash" user user cwd "/tmp" code " if [ -f /vagrant/cache/build-tools/17.0.0.tar.gz ] ; then echo Installing from cache tar -C #{sdk_loc}/build-tools -z -x -f /vagrant/cache/build-tools/17.0.0.tar.gz else #{sdk_loc}/tools/android update sdk --no-ui -a -t build-tools-17.0.0 <