diff options
| author | Carl Hetherington <cth@carlh.net> | 2012-09-15 20:58:26 +0100 |
|---|---|---|
| committer | Carl Hetherington <cth@carlh.net> | 2012-09-15 20:58:26 +0100 |
| commit | 715f6c0d2a7782d2410340745af02b68e0a00d86 (patch) | |
| tree | 3fa83355a7075f8b1f40dd72eb1921b773fca552 /doc | |
| parent | 6ed5c351e6097731904a3196f4ca31aaf3bec0a7 (diff) | |
Tweak documentation.
Diffstat (limited to 'doc')
| -rw-r--r-- | doc/manual/dvdomatic.xml | 81 |
1 files changed, 81 insertions, 0 deletions
diff --git a/doc/manual/dvdomatic.xml b/doc/manual/dvdomatic.xml index cd7932eca..b222c1cd4 100644 --- a/doc/manual/dvdomatic.xml +++ b/doc/manual/dvdomatic.xml @@ -117,6 +117,87 @@ dvdomatic in a shell. </para> +<section> +<title>Obtaining dependencies on Ubuntu 12.04</title> + +<para> +Ubuntu 12.04 packages most of DVD-o-matic's dependencies, but some are missing. This section +describes how to obtain all of the dependencies. +</para> + +<section> +<title>Packaged dependencies</title> + +<para> +Most of the dependencies can be obtained from Ubuntu's packages using: +</para> + +<programlisting> +sudo apt-get install libwxgtk2.8-dev libsndfile1-dev libssl-dev libssh-dev +sudo apt-get install libmagickcore-dev libboost-filesystem-dev libboost-thread-dev +</programlisting> + +</section> + +<section> +<title>Unpackaged dependencies</title> +</section> + +<section> +<title>FFmpeg</title> + +<para> +Ubuntu does not package FFmpeg, so you will need to build it from source. The +following commands should work: +</para> + +<programlisting> +git clone git://source.ffmpeg.org/ffmpeg.git ffmpeg +cd ffmpeg +./configure --enable-shared --enable-postproc --enable-gpl +make +sudo make install +</programlisting> + +</section> + +<section> +<title>libdcp</title> + +<para> +You can build libdcp using: +</para> + +<programlisting> +wget http://carlh.net/software/libdcp-0.20.tar.bz2 +tar xjf libdcp-0.20.tar.bz2 +cd libdcp-0.20 +./waf configure +./waf build +sudo ./waf install +</programlisting> + +</section> + +<section> +<title>libopenjpeg</title> + +<para> +Ubuntu does package libopenjpeg, but it is a rather old version. To build +the current release: +</para> + +<programlisting> +wget http://code.google.com/p/openjpeg/downloads/detail?name=openjpeg-1.5.1.tar.gz +tar xzf openjpeg-1.5.1.tar.gz +cd openjepg-1.5.1.tar.gz +./configure +make +sudo make install +</programlisting> + +</section> +</section> </section> </chapter> |
