Merge branch '07_incprefix' into 'master'
07 Incprefix I fixed #7 but I'm still not contented with the way the installation is descriped in [INSTALL.md}(INSTALL.md). @gesina Would you mind taking a look at this?
This commit is contained in:
commit
4ed41d8ac7
2 changed files with 16 additions and 6 deletions
|
@ -9,6 +9,10 @@ For Pizza to work, you need a running mail service (either server, smarthost or
|
|||
### The simple way
|
||||
|
||||
Install Pizza by running "install.sh" from the base-directory.
|
||||
install.sh takes two arguments: a prefix (the path where to place the executable parts; defaults to "/usr/local/") and
|
||||
an incprefix (the path where to place the message contents/ASCII-images; defaults to "<prefix>/share").
|
||||
To set incprefix, passing prefix beforehands is mandatory!
|
||||
You may also pass the environement variables "$PATH" and "$INCPATH", even though given arguments take precedence.
|
||||
|
||||
### The hard way
|
||||
|
||||
|
|
16
install.sh
16
install.sh
|
@ -6,29 +6,35 @@
|
|||
|
||||
|
||||
if [ "$1" ]; then
|
||||
PREFIX:="$1"
|
||||
PREFIX="$1"
|
||||
else
|
||||
: ${PREFIX:="/usr/local"}
|
||||
fi
|
||||
|
||||
if [ "$2" ]; then
|
||||
INCPREFIX="$2"
|
||||
else
|
||||
: ${INCPREFIX:="${PREFIX}/share"}
|
||||
fi
|
||||
|
||||
# Create necessary directories
|
||||
|
||||
for i in "${PREFIX}/bin" "${PREFIX}/share/pizza"; do
|
||||
for i in "${PREFIX}/bin" "${INCPREFIX}/share/pizza"; do
|
||||
if [ ! -d "$i" ]; then
|
||||
mkdir -p "$i"
|
||||
fi
|
||||
done
|
||||
|
||||
install -m 755 src/pizza "${PREFIX}/bin/pizza"
|
||||
install -m 644 assets/* "${PREFIX}/share/pizza/"
|
||||
install -m 644 assets/* "${INCPREFIX}/share/pizza/"
|
||||
|
||||
# Tell the user what to do next, if he used another PREFIX
|
||||
|
||||
if [ "${PREFIX}" != "/usr/local" ]; then
|
||||
if [ "${INCPREFIX}" != "/usr/local" ]; then
|
||||
echo 'Your installation path differs from /usr/local'
|
||||
echo 'For pizza to run properly, please either modify the script'
|
||||
echo 'or set the PIZZAINC-variable accordingly.'
|
||||
echo '(Add the following to your ${shell}rc:'
|
||||
echo -e "\t export PIZZAINC=\"${PREFIX}/share/pizza/\""
|
||||
echo -e "\t export PIZZAINC=\"${INCPREFIX}/pizza/\""
|
||||
echo ")"
|
||||
fi
|
||||
|
|
Loading…
Reference in a new issue