DEADSOFTWARE

LinLinker добавлен в список компиляции, исправлено название библиотеки в HostGnome...
[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 software:
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-common
26 if you have 64-bit version of Ubuntu (or other Debian-based OS), do this:
27 sudo apt-get install libc6-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-common: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 Example: build, create assembly in /tmp, run BlackBox from assembly:
49 cd BlackBox
50 ./switch-target `uname -s` GUI
51 ./build
52 ./export /tmp/BlackBox-`uname -s`
53 cd /tmp/BlackBox-`uname -s`
54 ./run-BlackBox