blob: 38f0cbbded54437a142ea6bbaa0bc3cd6064ccc3 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
|
All files are licensed under GNU LGPL version 2.1 unless specifically
stated otherwise in the file itself.
This is development code, it is broken. Don't expect to use it for
anything resembling production use. However, I firmly believe this is
infinitely more functional than Scratchbox 1.x can ever be.
Here are some instructions:
You need git to work with sbox2, get it from http://git.or.cz/.
Clone the scratchbox 2 repository:
$ git clone git://anongit.freedesktop.org/git/sbox2
Build using:
$ cd sbox2
$ ./autogen.sh
$ ./configure
$ make
$ make install prefix=$HOME/scratchbox
You need Qemu for cpu-transparency. Debian/Etch and Debian/unstable provide
a good one. If all else fails, there's a static qemu-arm-0.8.1-sb2
available on http://freedesktop.org/wiki/Software_2fsbox2.
If you're targeting ARM, you can get a good toolchain from CodeSourcery:
http://www.codesourcery.com/gnu_toolchains/arm/download.html
Now complete sb2 target setup:
$ mkdir $HOME/buildroot
$ cd $HOME/buildroot
$ $HOME/scratchbox/bin/sb2-init arm-none-linux-gnueabi-gcc
That will automatically generate a working sb2.config for the compiler
which is given on the command line.
At this point you can simply run sb2:
$ ../scratchbox/bin/sb2
For Maemo (http://www.maemo.org/) development you can download
the latest rootstrap:
http://repository.maemo.org/stable/3.0/armel/maemo-sdk-rootstrap_3.0_armel.tgz)
Extract that to $HOME/buildroot.
Then build a proper libtool for your active toolchain by running
this inside sb2:
$ $HOME/scratchbox/bin/sb2-build-libtool.sh
In order to build debian packages, you have to use -d switch for
dpkg-buildpackage to skip build dependency checking. A proper
command line would be for example:
dpkg-buildpackage -rfakeroot -d
That's all folks, enjoy!
|