install cordova from ubuntu ppa

This commit is contained in:
Marc Wäckerlin
2015-11-25 12:45:18 +00:00
parent c7c4bd731a
commit 43fce34123
2 changed files with 1 additions and 10 deletions

View File

@@ -34,15 +34,6 @@ AC_PATH_PROG(ANDROID, [android], [0],
[${PATH}${PATH_SEPARATOR}${ANDROID_HOME}/tools])
AC_PATH_PROG(CORDOVA, [cordova], [0],
[${PATH}${PATH_SEPARATOR}$(pwd)/node_modules/cordova/bin])
if test ${CORDOVA} = 0; then
AC_CHECK_PROG(NODE_NPM, [npm node], [1], [0])
if test ${NODE_NPM} -eq 1; then
if npm install cordova; then
AC_PATH_PROG(CORDOVA, [cordova], [0],
[${PATH}${PATH_SEPARATOR}$(pwd)/node_modules/cordova/bin])
fi
fi
fi
AM_CONDITIONAL(HAVE_CORDOVA, [test ${CORDOVA} != 0 -a ${ANDROID} != 0])
AX_SUBST(CORDOVA)