Skip to content

Instantly share code, notes, and snippets.

@diogoreus
Created July 10, 2012 14:47
Show Gist options
  • Save diogoreus/3083744 to your computer and use it in GitHub Desktop.
Save diogoreus/3083744 to your computer and use it in GitHub Desktop.
Downloading and installing the latest source of iOS PhoneGap
PGTEMP=`mktemp -d -t 'phonegap'`
curl -L https://github.com/callback/callback-ios/zipball/master > $PGTEMP/latest.zip
unzip $PGTEMP/latest.zip -d $PGTEMP > /dev/null
make -C $PGTEMP/callback*
installer -pkg $PGTEMP/callback*/dist/files/PhoneGap*.pkg -target CurrentUserHomeDirectory
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment