You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
14 lines
730 B
14 lines
730 B
# if you have android, we need cordova plus more dependencies |
|
# so we can build an android app |
|
if test -n "${ANDROID_HOME}"; then |
|
# all this is needed for android through cordova (phonegap) only |
|
packages+=("wheezy:::curl:::npm") |
|
repos+=("Debian|Ubuntu-precise::::::universe") |
|
repos+=("Ubuntu-precise:::'deb http://archive.ubuntu.com/ubuntu precise universe'") |
|
repos+=("wheezy:::'deb http://ftp.is.debian.org/debian wheezy-backports main'") |
|
commands+=("update-alternatives --install /usr/bin/node nodejs /usr/bin/nodejs 100") |
|
commands+=("wheezy:::curl https://www.npmjs.com/install.sh | sh") |
|
envs+=("-e HOME=${HOME}") |
|
envs+=("-e TERM=xterm") |
|
dirs+=("-v ${HOME}/.gnupg:${HOME}/.gnupg:ro") |
|
fi
|
|
|