DEADSOFTWARE

binary files generated for FreeBSD
[bbcp.git] / README
1 Ducumentation (Russian):
3 http://gitlab.molpit.org/blackbox/freenix/wikis/home
5 Directories structure:
7 BlackBox/
8 universal development environment
9 based on BlackBox 1.7-beta1
11 examples/
12 encoder/
13 encoding BlackBox subsystem by StdCoder from command line interface
14 fpstest/
15 loop test
16 server/
17 static single-thread web-server
19 Installation of required packages in Ubuntu 14.04 (should work also with other Debian-based OS):
21 32-bit version:
22 sudo apt-get install libgtk2.0-0 gtk2-engines gtk2-engines-murrine libcanberra-gtk-module
23 sudo apt-get install libgnomeui-0 gnome-icon-theme-full
25 64-bit version:
26 sudo apt-get install libc6-dev-i386
27 sudo dpkg --add-architecture i386
28 sudo apt-get update
29 sudo apt-get install libgtk2.0-0:i386 gtk2-engines:i386 gtk2-engines-murrine:i386 libcanberra-gtk-module:i386
30 sudo apt-get install libgnomeui-0:i386 gnome-icon-theme-full
32 Comments:
33 'libc6-dev-i386' is required for compilation of 'loader', after build it can be replaced by 'libc6-i386'
36 To build BlackBox:
37 cd BlackBox
38 ./switch-target `uname -s` GUI
39 ./build
41 To run BlackBox (after build):
43 ./run-BlackBox
44 for Linux version also you can run
45 ./blackbox
47 To create BlackBox assembly (after build):
49 ./export <outputDirectory>
51 To clean the BlackBox folder:
52 ./switch-target none
53 ./clean
55 Example: build, create assembly and run BlackBox from assembly:
56 cd BlackBox
57 ./switch-target `uname -s` GUI
58 ./build
59 ./export ../`uname -s`_GUI
60 ./switch-target none
61 ./clean
62 cd ../`uname -s`_GUI
63 ./run-BlackBox