DEADSOFTWARE

server example improved (change logo and text)
[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 in Ubuntu 14.04 (should work also with other Debian-based OS):
22 32-bit version:
23 sudo apt-get install libgtk2.0-0 gtk2-engines gtk2-engines-murrine libcanberra-gtk-module
24 sudo apt-get install libgnomeui-0
26 64-bit version:
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
33 Comments:
34 'libc6-dev-i386' is required for compilation of 'loader', after build it can be replaced by 'libc6-i386'
35 'libgnomeui-0:i386' is required only for run blackbox by 'run-BlackBox-2' starter
38 To build BlackBox:
39 cd BlackBox
40 ./switch-target `uname -s` GUI
41 ./build
43 To run BlackBox (after build):
45 ./run-BlackBox
46 or
47 ./run-BlackBox-2
49 To create BlackBox assembly (after build):
51 ./export <outputDirectory>
53 To clean the BlackBox folder:
54 ./switch-target none
55 ./clean
57 Example: build, create assembly in /tmp, run BlackBox from assembly:
58 cd BlackBox
59 ./switch-target `uname -s` GUI
60 ./build
61 ./export /tmp/BlackBox-`uname -s`
62 ./switch-target none
63 ./clean
64 cd /tmp/BlackBox-`uname -s`
65 ./run-BlackBox