summaryrefslogtreecommitdiff
path: root/source/script/installcp.sh
blob: bafd84146d79e936b1c10b4fd2408c7f3efec2b6 (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
28
29
30
31
32
33
34
35
36
#!/bin/sh
LIBDIR=$1
CODEPAGEDIR=$2
BINDIR=$3

shift
shift
shift

echo Installing codepage files in $CODEPAGEDIR
for d in $LIBDIR $CODEPAGEDIR; do
if [ ! -d $d ]; then
mkdir $d
if [ ! -d $d ]; then
  echo Failed to make directory $d
  exit 1
fi
fi
done

for p in $*; do
 echo Creating codepage file $CODEPAGEDIR/codepage.$p from codepage_def.$p
 $BINDIR/make_smbcodepage c $p codepage_def.$p $CODEPAGEDIR/codepage.$p
done


cat << EOF
======================================================================
The code pages have been installed. You may uninstall them using the command
the command "make uninstallcp" or make "uninstall" to uninstall binaries,
man pages, shell scripts and code pages.
======================================================================
EOF

exit 0