PDA

View Full Version : compiling an app


ioan
08-01-2006, 04:05 PM
I successfully installed the scratchbox and xephyr. Now I have to copy the source code of the application in the scratchbox and I have no idea how to do that. I the documentation is just:
“1) First download the maemopad source tgz file from the subversion repository.
2) Copy that file to your user home directory inside Scratchbox, and uncompress it”
which is my home dir inside scratchbox? I tried to copy into /scratchbox/users/ioan but if I do a ls from [sbox-SDK_PC: ~] > I don't see my file there.

Thank you.
-i

bradb
08-01-2006, 05:21 PM
I successfully installed the scratchbox and xephyr. Now I have to copy the source code of the application in the scratchbox and I have no idea how to do that

Copy your source to /tmp first ("cp archive.tar.gz /tmp"). Then start scratchbox, and type

"cp /tmp/archive.tar.gz ."

And unpack as needed (tar -zxvf archive.tar.gz)

Make sense?

Brad.

ioan
08-01-2006, 05:46 PM
Make sense?


yes, thanks :)
-i