The "photomolo", "exifiron" and "jpegnail" utilities depend on the
JPEG library by the Independent JPEG Group.

The Bourne shell script "photocopy" is in the public domain.  It is a
simple front-end for exifiron, for copying and optimising images from
the file system of a digital camera.  It is not installed by default,
as you will probably want to adapt it for your needs.

To build and install the "photomolo", "exifiron", "jpegnail" and
"jpegcom" programs on Debian GNU/Linux, you may use the following
commands:

apt-get install libjpeg62-dev
make
make PREFIX=/usr/local install installman

To build the programs on other Unix-like systems:

# get and unpack the libjpeg source code
wget ftp://ftp.uu.net/graphics/jpeg/jpegsrc.v6b.tar.gz
gzip -dc jpegsrc.v6b.tar.gz | tar xf -
# compile libjpeg
cd jpeg-6b; ./configure; make; cd ..
# unpack the photomolo source code
gzip -dc photomolo-1.2.3.tar.gz | tar xf -
# compile "photomolo", "exifiron", "jpegnail" and "jpegcom"
cd photomolo-1.2.3
make INCLUDES=-I../jpeg-6b LIBS=../jpeg-6b/libjpeg.a
make PREFIX=/usr/local install installman
