This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# get the CordovaLib version | |
CDVER=`head -1 "${CORDOVALIB}/VERSION"` | |
SRC1="${CORDOVALIB}/javascripts/cordova-${CDVER}.js" | |
TARGET="${PROJECT_DIR}/www" | |
# compile and copy CordovaLib | |
make -C "${CORDOVALIB}" | |
cp "${SRC1}" "${TARGET}" |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/bash | |
# ############################################################################ | |
# | |
# MIT licensed | |
# http://www.opensource.org/licenses/mit-license.php | |
# | |
# Script to create a new PhoneGap project from the PhoneGap Template. | |
# You need to install PhoneGapLib first (through the installer) | |
# before this script can work. |