caesium-clt/INSTALL

46 lines
1.1 KiB
Plaintext
Raw Normal View History

Installation Instructions
*************************
Copyright (C) 2015 Matteo Paonessa
Copying and distribution of this file, with or without modification,
are permitted in any medium without royalty provided the copyright
notice and this notice are preserved. This file is offered as-is,
without warranty of any kind.
Requirements
==================
You will need both mozjpeg and zopflipng compiled as libraries to be able to
compile CaesiumCLT. Refer to their own documentation for the detailed
instructions.
Basic Installation
==================
2015-05-15 18:38:26 +02:00
You should be able to compile this software the standard way.
Unpack the archive (if not cloned from GIT), enter the directory
and compile the program.
The sequence should be something like:
$ tar xfv caesiumclt-*.tar.gz
$ cd caesiumclt-*
$ ./configure
$ make
2015-07-24 11:00:43 +02:00
$ sudo make install
Cloning from git
==================
$ git clone https://github.com/Lymphatus/CaesiumCLT
$ cd CaesiumCLT
$ (optional) autoreconf -fiv
2015-07-24 11:00:43 +02:00
$ ./configure
$ make
$ sudo make install
You can build out of the source tree in a separate folder. For example:
$ mkdir build
$ cd build
$ ../configure
$ make
2015-05-15 18:38:26 +02:00
$ sudo make install