blob: 6c26b44a0ed5366cf16a660f2ace982692123503 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
|
:
# SCCSID @(#)install.in 4.8 95/09/24 GIE REL
#
# Installation script all PROJ.4 system reference files.
#
# This script must be executed after compilation of proj library.
#
# Execute as:
#
# install
#
# ------------------------------------------------------------
prefix=/usr/local
#
lib=${prefix}/lib/proj.4
# Copy in "init" files
for x in nad27 nad83 world GL27
do
cp $x ${lib}/$x
if [ $? -ne 0 ] ; then
echo "init copying failed for file $x"
else
echo "file $x installed"
fi
done
echo "normal completion"
exit 0
|