Installing Jasper
Procedure
- Use PuTTY to log in to the server as the root user.
- Create an installation directory.
mkdir -p /path/to/jasper
- Go to the installation directory.
cd /path/to/jasper
- Obtain the source package.
wget https://www.ece.uvic.ca/~frodo/jasper/software/jasper-1.900.2.tar.gz
- Decompress the source package.
tar -zxvf jasper-1.900.2.tar.gz
- Go to the directory generated after the decompression.
cd jasper-1.900.2/
- Configure the compilation.
./configure --prefix=/path/to/jasper

- Perform the compilation and installation.
make -j 8

make install

- Set the environment variables.
export PATH=/path/to/jasper/bin:$PATH export LD_LIBRARY_PATH=/path/to/jasper/lib:$LD_LIBRARY_PATH
Parent topic: Configuring the Compilation Environment