56 lines
1.9 KiB
Plaintext
56 lines
1.9 KiB
Plaintext
Building and Installing
|
|
-----------------------
|
|
To build ssocr, type:
|
|
|
|
make
|
|
|
|
You can use ssocr from the directory you build it, no installation required.
|
|
If you want to install it to your system, type:
|
|
|
|
make install
|
|
|
|
To change the default install location of /usr/local to /usr, type:
|
|
|
|
make PREFIX=/usr install
|
|
|
|
You have to keep track of the installed files yourself, if you want to
|
|
remove them later on.
|
|
|
|
If you prefer to install a .deb package for easier removal, you can
|
|
build a .deb package by typing:
|
|
|
|
make deb
|
|
|
|
Prerequisites
|
|
-------------
|
|
- A system sufficiently compatible to POSIX and GNU.
|
|
- POSIX utilities chmod, date, install, printf, sh, sed (or compatible)
|
|
- GNU utilities gzip, bzip2, tar (or compatible)
|
|
- Imlib2 shared library and development headers. On a Debian or Ubuntu system
|
|
they are provided by the packages libimlib2 and libimlib2-dev.
|
|
On Mac OS X you can use 'brew' to install Imlib2: brew install imlib2
|
|
(see http://mxcl.github.com/homebrew/)
|
|
- imlib2-config (part of libimlib2-dev on Debian or Ubuntu)
|
|
- Build tools, e.g. build-essential on a Debian (or Ubuntu) system.
|
|
- To build a .deb package, you probably need the debhelper package.
|
|
- To create an HTML version of the man page, you need rman.
|
|
|
|
Additional Makefile Targets
|
|
---------------------------
|
|
- clean: remove generated files
|
|
- tar: create a bzip2 compressed tar-ball of the sources for
|
|
distribution
|
|
- ssocr-manpage.html: create HTML version of man page
|
|
|
|
Platform Specifics
|
|
------------------
|
|
- I am testing on GNU/Linux only
|
|
- You may need to rename the binary from ssocr to ssocr.exe to use it on Windows
|
|
- You may need to specify the X11 include path manually on macOS, using e.g.
|
|
make CPPFLAGS=-I/opt/X11/include
|
|
|
|
Website
|
|
-------
|
|
You can get the current ssocr version from the official ssocr website:
|
|
http://www.unix-ag.uni-kl.de/~auerswal/ssocr/
|