26 lines
701 B
Text
26 lines
701 B
Text
install:V: install-$MKSHELL
|
|
install-sh:VQ: build
|
|
if test -d shr ; then
|
|
echo Installing shared files...
|
|
cp -rf shr $HOME/shr/..
|
|
echo Done installing shared files
|
|
fi
|
|
if test -d app ; then
|
|
echo Installing application files...
|
|
echo "'$HOME'"
|
|
echo "'$APPDIR'"
|
|
echo `goblin paths app/* $APPDIR/$PKG_NAME/`
|
|
#goblin mkdir -p `goblin path $APPDIR/$PKG_NAME` && cp -rf `goblin paths app/* $APPDIR/$PKG_NAME/`
|
|
echo Done installing application files
|
|
fi
|
|
if test -d exe ; then
|
|
echo Installing executables...
|
|
goblin mkdir -p $EXEDIR
|
|
cp -rf exe/* $EXEDIR/
|
|
files=`goblin basename $(ls exe)`
|
|
for i in $files ; do
|
|
chmod 0755 $EXEDIR/$i
|
|
done
|
|
echo Done installing executables
|
|
fi
|
|
|