summaryrefslogtreecommitdiffstats
path: root/docs
diff options
context:
space:
mode:
authorStefan Radomski <radomski@tk.informatik.tu-darmstadt.de>2013-09-23 16:30:04 (GMT)
committerStefan Radomski <radomski@tk.informatik.tu-darmstadt.de>2013-09-23 16:30:04 (GMT)
commitbe3c180fec71866a91b5f9297708d581bc1d6435 (patch)
tree830acee295b8456d1e629a0db6c3734f629074a3 /docs
parent8dde1311719b29c63efb379566916cb1aa9a7cd7 (diff)
downloaduscxml-be3c180fec71866a91b5f9297708d581bc1d6435.zip
uscxml-be3c180fec71866a91b5f9297708d581bc1d6435.tar.gz
uscxml-be3c180fec71866a91b5f9297708d581bc1d6435.tar.bz2
Added instant messaging invoker
Diffstat (limited to 'docs')
-rw-r--r--docs/Ubuntu-LTS.md46
1 files changed, 46 insertions, 0 deletions
diff --git a/docs/Ubuntu-LTS.md b/docs/Ubuntu-LTS.md
new file mode 100644
index 0000000..15e58cc
--- /dev/null
+++ b/docs/Ubuntu-LTS.md
@@ -0,0 +1,46 @@
+Install Ubuntu LTS 12
+
+For core functionality without fancy plugins:
+
+$ sudo apt-get install cmake
+$ sudo apt-get install build-essential
+$ sudo apt-get install libxml2-dev
+$ sudo apt-get install libcurl4-openssl-dev
+
+For OpenSceneGraph invoker (version in repositories lacks vrml plugin):
+
+$ sudo apt-get install libpng12-dev
+$ sudo apt-get install libjpeg-dev
+$ sudo apt-get install libboost-all-dev
+$ sudo apt-get install libltdl-dev
+$ sudo apt-get install libopenscenegraph-dev # just for the dependencies
+$ sudo apt-get remove libopenscenegraph-dev
+
+$ wget http://sourceforge.net/projects/openvrml/files/latest/download
+$ tar xvjf openvrml*
+$ cd openvrml*
+$ ./configure --disable-render-text-node --disable-script-node-javascript --disable-script-node-java --disable-gl-renderer --disable-xembed --disable-player --disable-examples --disable-mozilla-plugin
+$ sudo make install
+$ cd ..
+
+$ sudo apt-get install git
+$ git clone https://github.com/openscenegraph/osg
+$ cd osg
+$ nano src/osgPlugins/vrml/IndexedFaceSet.cpp # Edit line 207 and remove the else block
+
+$ mkdir build && cd build
+$ cmake ..
+$ make -j4
+$ sudo make install
+
+For ffmpeg invoker:
+
+Follow http://ffmpeg.org/trac/ffmpeg/wiki/UbuntuCompilationGuide for a version of recent version of ffmpeg
+on ubuntu. The various libav* packages that come with the distribution are inadequate.
+
+Install uscxml:
+$ git clone https://github.com/tklab-tud/uscxml.git
+$ cd uscxml
+$ mkdir build && cd build
+$ cmake ..
+$ make \ No newline at end of file