Link packages into /usr/local
This commit is contained in:
parent
8bf5d651ed
commit
244c033b05
1 changed files with 40 additions and 0 deletions
40
link-subdir
Normal file
40
link-subdir
Normal file
|
@ -0,0 +1,40 @@
|
|||
#!/bin/sh
|
||||
#
|
||||
# Nico Schottelius <nico-linux //@// schottelius.org>
|
||||
# Date: 13-Mär-2007
|
||||
# Last Modified: -
|
||||
# Description: Links files from /usr/packages/$pkg/$dir/* to /usr/local/$dir
|
||||
#
|
||||
|
||||
if [ "$#" -ne 2 ]; then
|
||||
echo "$0: package (below /usr/packages/) subdir (like bin, lib or include)"
|
||||
exit 1
|
||||
fi
|
||||
|
||||
basedir="$1"
|
||||
subdir="$2"
|
||||
destination=/usr/local
|
||||
ddir="${destination}/${subdir}"
|
||||
|
||||
# test for existence, abort if conflicts are there
|
||||
do_exit=0
|
||||
for file in "${basedir}/${subdir}"/*; do
|
||||
basename=$(basename "$file")
|
||||
dest="${ddir}/${basename}"
|
||||
|
||||
if [ -e "${dest}" ]; then
|
||||
echo "${dest} already exists, abort"
|
||||
do_exit=1
|
||||
fi
|
||||
done
|
||||
|
||||
if [ "$do_exit" = 1 ]; then
|
||||
exit 1
|
||||
fi
|
||||
|
||||
# link!
|
||||
for file in "${basedir}/${subdir}"/*; do
|
||||
ln -s "$file" "$ddir"
|
||||
done
|
||||
|
||||
|
Loading…
Reference in a new issue