DEADSOFTWARE

исправлена ошибка из предыдущего коммита libgnomeui-common->libgnomeui-0, в README...
[bbcp.git] / README
1 Ducumentation (Russian):
3 http://gitlab.molpit.com/oberon/blackbox-freenix/wikis/home
5 Directories structure:
7 BlackBox/
8 universal development environment
9 synchronized with original BlackBox 1.6
11 examples/
12 some outdated examples
13 console/
14 simple console application
15 fpstest/
16 loop test
17 server/
18 static web-server as the example of an application for Linux OS
20 Installation of required packages:
22 if you have 32-bit version of Ubuntu (or other Debian-based OS), do this:
23 sudo apt-get install libgtk2.0-0 gtk2-engines gtk2-engines-murrine libcanberra-gtk-module
24 sudo apt-get install libgnomeui-0
26 if you have 64-bit version of Ubuntu (or other Debian-based OS), do this:
27 sudo apt-get install libc6-dev-i386
28 sudo dpkg --add-architecture i386
29 sudo apt-get update
30 sudo apt-get install libgtk2.0-0:i386 gtk2-engines:i386 gtk2-engines-murrine:i386 libcanberra-gtk-module:i386
31 sudo apt-get install libgnomeui-0:i386
34 cd BlackBox
35 ./switch-target `uname -s` GUI
36 ./build
38 To run BlackBox (after build):
40 ./run-BlackBox
41 or
42 ./run-BlackBox-2
44 To create BlackBox assembly (after build):
46 ./export <outputDirectory>
48 To clean the BlackBox folder:
49 ./switch-target none
50 ./clean
52 Example: build, create assembly in /tmp, run BlackBox from assembly:
53 cd BlackBox
54 ./switch-target `uname -s` GUI
55 ./build
56 ./export /tmp/BlackBox-`uname -s`
57 ./switch-target none
58 ./clean
59 cd /tmp/BlackBox-`uname -s`
60 ./run-BlackBox