DEADSOFTWARE

fix clipboard and accelerators
[bbcp.git] / README
1 Ducumentation (Russian):
3 http://gitlab.molpit.org/blackbox/freenix/wikis/home
5 Directories structure:
7 BlackBox/
8 universal development environment based on BlackBox 1.7
10 examples/
11 encoder/ - encoding BlackBox subsystem by StdCoder from command line interface
12 fpstest/ - loop and fonts test
13 server/ - static single-thread web-server
15 Installation of required packages in Ubuntu 14.04 (should work also with other Debian-based OS):
17 32-bit version:
18 sudo apt-get install libgtk2.0-0 gtk2-engines gtk2-engines-murrine libcanberra-gtk-module
19 sudo apt-get install libgnomeui-0 gnome-icon-theme-full
21 64-bit version:
22 sudo dpkg --add-architecture i386
23 sudo apt-get update
24 sudo apt-get install libgtk2.0-0:i386 gtk2-engines:i386 gtk2-engines-murrine:i386 libcanberra-gtk-module:i386
25 sudo apt-get install libgnomeui-0:i386 gnome-icon-theme-full
27 To build BlackBox:
28 cd BlackBox
29 ./switch-target `uname -s` GUI
30 ./build
32 To run BlackBox (after build):
34 ./run-BlackBox
35 for Linux version also you can run
36 ./blackbox
38 To create BlackBox assembly (after build):
40 ./export <outputDirectory>
42 To clean the BlackBox folder:
43 ./switch-target none
44 ./clean
46 Example: build, create assembly and run BlackBox from assembly:
47 cd BlackBox
48 ./switch-target `uname -s` GUI
49 ./build
50 ./export ../`uname -s`_GUI
51 ./switch-target none
52 ./clean
53 cd ../`uname -s`_GUI
54 ./run-BlackBox