1
0
mirror of https://git.FreeBSD.org/ports.git synced 2024-10-29 21:39:24 +00:00
freebsd-ports/databases/msql/files/slibinstall.mm
2001-01-27 21:38:54 +00:00

28 lines
412 B
Bash

#!/bin/sh
. $MACRO_DIR/makegen/makegen.cf
maj=$1
src=$2
destd=$3
mode=$4
owner=$5
group=$6
echo "install ::"
echo " cp $src.$maj $destd/$src.$maj"
echo " ln -sf $src.$maj $destd/$src"
if test "$mode." != "."
then
echo " $chmod $mode $destd/$src.$maj"
fi
if test "$owner." = "root."
then
echo " $chown $owner $destd/$src.$maj"
fi
if test "$group." != "."
then
echo " $chgrp $group $destd/$src.$maj"
fi
echo