This repository has been archived on 2023-08-20. You can view files and clone it, but cannot push or open issues or pull requests.
yap-6.3/Logtalk/misc/lgt_install.sh
pmoura 921e576877 Logtalk 2.21.0 files.
git-svn-id: https://yap.svn.sf.net/svnroot/yap/trunk@1138 b08c6af1-5177-4d33-ba66-4b1c6b8b522a
2004-09-14 23:11:12 +00:00

46 lines
1.0 KiB
Bash
Executable File

#!/bin/sh
## =================================================================
## Logtalk - Object oriented extension to Prolog
## Release 2.21.0
##
## Copyright (c) 1998-2004 Paulo Moura. All Rights Reserved.
## =================================================================
echo
echo "Installing Logtalk..."
if [ -z "$1" ]; then
prefix=/usr/local
else
prefix="$1"
fi
rm -rf $prefix/lgt2210
rm -f $prefix/logtalk
mkdir $prefix/lgt2210
cd ..
cp -R * $prefix/lgt2210
cd $prefix
chmod -R go-w,a+r lgt2210
chmod a+x lgt2210
chmod a+x lgt2210/misc/*.sh
chmod a+x lgt2210/xml/*.sh
ln -sf lgt2210 logtalk
cd bin
ln -sf ../lgt2210/misc/cplgtdirs.sh cplgtdirs
ln -sf ../lgt2210/xml/lgt2pdf.sh lgt2pdf
ln -sf ../lgt2210/xml/lgt2html.sh lgt2html
echo "Logtalk installation completed."
echo
echo "Users should define the environment variable LOGTALKHOME pointing"
echo "to $prefix/logtalk and then run the shell script cplgtdirs in"
echo "order to make a local copy of the Logtalk examples, library, and"
echo "xml directories in ~/logtalk."
echo