Hi,

that's because DrGeo is a private development, and you need a development profile for running applications in your iPhone/iPad. 

Assuming that you already has in your system: 

1) Xcode (I'm using version 4.4) 
2) CMake (I'm using version 2.8.8)

And assuming also that you already has an iOS development user... 

For use pharo in your iPad you need to follow the following steps:

1) clone https://git.gitorious.org/~estebanlm/cogvm/cog-osx.git
2) in ./image dir prepare a VMMaker image (using pharo 1.4):

Gofer it 
squeaksource: 'MetacelloRepository';
package: 'ConfigurationOfCog';
load.
(Smaltalk at: #ConfigurationOfCog) project lastVersion load.

3) Generate sources for iPhone:

StackIPhoneConfig new 
generateSources; generate.

4) Generate your iPhone image (follow the instructions in iosbuild/resources/README), which is the place where iOS images need to be placed. 

5) In dir ./build

build$ ../codegen-scripts/extract-commit-info.sh
build$ cmake -G Xcode .
build$ open iStackVM.image
 
 5.1) you probably need to add your own development profile, the default one is named "iPhone Developer"

6) run

ALTERNATE
To run in Simulator:
Replace in Step 3 from StackIPhoneConfig to StackSimulatorConfig 


On Oct 27, 2012, at 1:09 AM, dimitris chloupis <thekilon@yahoo.co.uk> wrote:

I was searching for way to run pharo on my ipad and I found this thread


that lead me to this website


The problem is when I try to install by website or by iTunes my ipad complains it cannot install Dr. Geo

So is there a way to make pharo run on my ipad ?