mirror of
https://gitlab.com/fdroid/fdroidserver.git
synced 2024-11-09 17:00:12 +01:00
58 lines
1.2 KiB
Ruby
58 lines
1.2 KiB
Ruby
|
|
ndk_loc = node[:settings][:ndk_loc]
|
|
user = node[:settings][:user]
|
|
|
|
script "setup-android-ndk" do
|
|
timeout 14400
|
|
interpreter "bash"
|
|
user node[:settings][:user]
|
|
cwd "/tmp"
|
|
code "
|
|
mkdir #{ndk_loc}
|
|
"
|
|
not_if do
|
|
File.exists?("#{ndk_loc}")
|
|
end
|
|
end
|
|
|
|
script "setup-android-ndk-r9b" do
|
|
timeout 14400
|
|
interpreter "bash"
|
|
user node[:settings][:user]
|
|
cwd "/tmp"
|
|
code "
|
|
if [ `uname -m` == 'x86_64' ] ; then
|
|
SUFFIX='_64'
|
|
else
|
|
SUFFIX=''
|
|
fi
|
|
tar jxvf /vagrant/cache/android-ndk-r9b-linux-x86$SUFFIX.tar.bz2
|
|
tar jxvf /vagrant/cache/android-ndk-r9b-linux-x86$SUFFIX-legacy-toolchains.tar.bz2
|
|
mv android-ndk-r9b #{ndk_loc}/r9b
|
|
"
|
|
not_if do
|
|
File.exists?("#{ndk_loc}/r9b")
|
|
end
|
|
end
|
|
|
|
script "setup-android-ndk-r10e" do
|
|
timeout 14400
|
|
interpreter "bash"
|
|
user node[:settings][:user]
|
|
cwd "/tmp"
|
|
code "
|
|
if [ `uname -m` == 'x86_64' ] ; then
|
|
SUFFIX='_64'
|
|
else
|
|
SUFFIX=''
|
|
fi
|
|
chmod u+x /vagrant/cache/android-ndk-r10e-linux-x86$SUFFIX.bin
|
|
/vagrant/cache/android-ndk-r10e-linux-x86$SUFFIX.bin x
|
|
mv android-ndk-r10e #{ndk_loc}/r10e
|
|
"
|
|
not_if do
|
|
File.exists?("#{ndk_loc}/r10e")
|
|
end
|
|
end
|
|
|