I want to make installer (pkg) for my certain application on Mac OS X. I know about pkgbuild
and productbuild
commands and it is not problem to write simple script to make pkg. The problem is that I want to collect some information about user behaviour, when user run installer. For example, I want to know how many times users start intaller. For that purpose I deside to use Google Analytics
, That's why my question is how can I make requests through http
to google service? Of course, I know about cURL
, but I don't know is this tool default in Mac OS X. Minimal version for my application is Mac OS X 10.7 Lion.
Thanks for help!