summaryrefslogtreecommitdiffstats
path: root/INSTALL
diff options
context:
space:
mode:
authorMatthias Vogelgesang <matthias.vogelgesang@gmail.com>2012-07-18 15:28:48 +0200
committerMatthias Vogelgesang <matthias.vogelgesang@gmail.com>2012-07-18 15:28:48 +0200
commit1c99dd636e725ad8d439b22e05a51f8c53a03228 (patch)
treeaf548d0254008becb8558420c5ce6f9b634b4060 /INSTALL
parente8511cd473b2eff313bffb06e18be42c2cf5ef8a (diff)
downloaduca-1c99dd636e725ad8d439b22e05a51f8c53a03228.tar.gz
uca-1c99dd636e725ad8d439b22e05a51f8c53a03228.tar.bz2
uca-1c99dd636e725ad8d439b22e05a51f8c53a03228.tar.xz
uca-1c99dd636e725ad8d439b22e05a51f8c53a03228.zip
Add installation instructions and ignore git files
Diffstat (limited to 'INSTALL')
-rw-r--r--INSTALL65
1 files changed, 65 insertions, 0 deletions
diff --git a/INSTALL b/INSTALL
new file mode 100644
index 0000000..151382a
--- /dev/null
+++ b/INSTALL
@@ -0,0 +1,65 @@
+Simple install procedure
+========================
+
+ $ tar xfz libuca-0.x.tar.gz
+ $ cd libuca-0.x
+ $ mkdir build
+ $ cd build/
+ $ cmake ..
+ $ make
+
+ [ Become root if necessary ]
+ $ make install
+
+
+Requirements
+============
+
+libuca requires CMake and pkg-config for building libraries and accompanying
+tools. Information about CMake can be found at:
+
+ http://www.cmake.org
+
+and pkg-config at:
+
+ http://www.freedesktop.org/software/pkgconfig
+
+libuca depends on the GObject library for object oriented programming.
+Information about this library can be found at:
+
+ http://developers.gnome.org/gobject/stable
+
+Each specific camera needs a camera SDK and/or a driver:
+
+ - UFO camera: pcilib
+ - pco.edge, pco.4000, pco.dimax cameras: SiliconSoftware menable IV driver
+ and SDK as well as the libpco wrapper.
+
+The control tools require Gtk+ GUI toolkit. Information is available at:
+
+ http://developer.gnome.org/platform-overview/
+
+
+Building the Library
+====================
+
+On Linux, libuca uses the CMake build system and pkg-config for dependency
+detection. The normal procedure to build this library is to create an empty
+build directory:
+
+ $ mkdir build/ && cd build
+
+configure the project using CMake:
+
+ $ cmake ../
+
+and compiling the library with make:
+
+ $ make
+ $ make install
+
+Options to the build process can be passed to the system when configuring:
+
+ $ cmake ../ -DCMAKE_INSTALL_PREFIX=/usr
+
+or via configuration tools like `ccmake`.