1
0
mirror of https://github.com/samba-team/samba.git synced 2025-10-30 08:23:49 +03:00
Files
samba-mirror/source/script/installswat.sh
Andrew Tridgell 2a444dedbe r8298: - started building a library of js routines in scripting/libjs/
- switched the existing test programs over to using the library

- added install of js lib
2007-10-10 13:19:33 -05:00

44 lines
876 B
Bash

#!/bin/sh
SWATDIR=$1
SRCDIR=$2
LIBDIR=$3
echo Installing swat files in $SWATDIR
cd $SRCDIR/../swat || exit 1
mkdir -p $SWATDIR || exit 1
installdir() {
for f in $*; do
dname=`dirname $f`
echo "Installing $f in $dname"
test -d $SWATDIR/$dname || mkdir -p $SWATDIR/$dname || exit 1
cp $f $SWATDIR/$dname/ || exit 1
chmod 0644 $SWATDIR/$f || exit 1
done
}
installdir *.esp
installdir esptest/*.esp esptest/*.js
installdir images/*.png images/*.ico
installdir scripting/*.ejs scripting/*.esp scripting/*.js
installdir style/*.css
installdir docs/*.js
echo "Installing js libs"
cd ../source/scripting || exit 1
mkdir -p $LIBDIR/js
cp libjs/*.js $LIBDIR/js
cat << EOF
======================================================================
The swat files have been installed.
======================================================================
EOF
exit 0