mirror of
https://github.com/slsdetectorgroup/slsDetectorPackage.git
synced 2025-04-22 03:40:04 +02:00

git-svn-id: file:///afs/psi.ch/project/sls_det_software/svn/slsDetectorsPackage@14 08cae9ef-cb74-4d14-b03a-d7ea46f178d7
59 lines
954 B
Plaintext
Executable File
59 lines
954 B
Plaintext
Executable File
##!/bin/bash
|
|
|
|
: ${INSTALLROOT="/usr/local/"}
|
|
read -p "Installation directory [default:\"$INSTALLROOT\"]:" -e t3
|
|
if [ -z "$t3" ]
|
|
then
|
|
echo
|
|
else
|
|
INSTALLROOT=$t3
|
|
fi
|
|
echo "INSTALLROOT will be \"$INSTALLROOT\""
|
|
export INSTALLROOT
|
|
|
|
: ${BINDIR="bin"}
|
|
read -p "Binaries directory [default:\"$BINDIR\"]:" -e t4
|
|
if [ -z "$t4" ]
|
|
then
|
|
echo
|
|
else
|
|
BINDIR=$t4
|
|
fi
|
|
echo "BINDIR will be \"$BINDIR\""
|
|
export BINDIR
|
|
|
|
: ${LIBDIR="lib"}
|
|
read -p "Libraries directory [default:\"$LIBDIR\"]:" -e t5
|
|
if [ -z "$t5" ]
|
|
then
|
|
echo
|
|
else
|
|
LIBDIR=$t5
|
|
fi
|
|
echo "LIBDIR will be \"$LIBDIR\""
|
|
export LIBDIR
|
|
|
|
: ${INCDIR="include/slsDetector"}
|
|
read -p "Includes directory [default:\"$INCDIR\"]:" -e t6
|
|
if [ -z "$t6" ]
|
|
then
|
|
echo
|
|
else
|
|
INCDIR=$t6
|
|
fi
|
|
echo "INCDIR will be \"$INCDIR\""
|
|
export INCDIR
|
|
|
|
: ${DOCDIR="share/doc"}
|
|
read -p "Documentation directory [default:\"$DOCDIR\"]:" -e t7
|
|
if [ -z "$t7" ]
|
|
then
|
|
echo
|
|
else
|
|
DOCDIR=$t7
|
|
fi
|
|
echo "DOCDIR will be \"$DOCDIR\""
|
|
export DOCDIR
|
|
|
|
|