blob: 6284988bf336b07995b8ca77b3f50721011e8fea (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
|
# The title of the photoalbum
TITLE='A simple Photoalbum'
# Diverse default values
THUMBGEOMETRY=250
GEOMETRY=800
MAXPREVIEWS=100
# Diverse directories, need to be full paths, not relative!
INCOMING_DIR=$(pwd)/incoming
DIST_DIR=$(pwd)/dist
TEMPLATE_DIR=/usr/share/photoalbum/templates
# Includes a .tar of the incoming dir in the dist, can be yes or no
declare -r TARBALL_INCLUDE=yes
declare -r TARBALL_SUFFIX=.tar
declare -r TAR_OPTS='-c'
# Some debugging options
#set -e
#set -x
|