summaryrefslogtreecommitdiff
path: root/INSTALL.sh
diff options
context:
space:
mode:
authorfukachan <fukachan>2001-01-19 16:21:59 +0000
committerfukachan <fukachan>2001-01-19 16:21:59 +0000
commite4c020a4abffcd59d3bc749a7b3ff145c506fb3d (patch)
tree095ae03b6fbb1949855d23c4246d6ae77e71afae /INSTALL.sh
parent2bb8c08c6e2070f9101894c25e307e93c51abb3a (diff)
downloadfml8-e4c020a4abffcd59d3bc749a7b3ff145c506fb3d.tar.gz
fml8-e4c020a4abffcd59d3bc749a7b3ff145c506fb3d.tar.bz2
fml8-e4c020a4abffcd59d3bc749a7b3ff145c506fb3d.zip
clean up and add messages
Diffstat (limited to 'INSTALL.sh')
-rwxr-xr-xINSTALL.sh20
1 files changed, 14 insertions, 6 deletions
diff --git a/INSTALL.sh b/INSTALL.sh
index 76ff3d58..4f9d211d 100755
--- a/INSTALL.sh
+++ b/INSTALL.sh
@@ -22,9 +22,11 @@ libexec_dir=$prefix_dir/libexec/fml
lib_dir=$prefix_dir/lib/fml
######################
+
_mkdir () {
local dir=$1
- echo mkdir $dir; test -d $dir || mkdir $dir
+ echo mkdir $dir;
+ test -d $dir || mkdir $dir
}
@@ -41,6 +43,7 @@ done
if [ ! -f $config_dir/main.cf ];then
+ echo create $config_dir/main.cf
sed -e s@__version__@$version@ \
-e s@__config_dir__@$config_dir@ \
-e s@__prefix_dir__@$prefix_dir@ \
@@ -49,8 +52,11 @@ fi
cp fml/etc/default_config.cf $config_dir/defaults/$version
+echo install libraries to $lib_dir/$version/
cp -pr fml/lib/* $lib_dir/$version
cp -pr cpan/lib/* $lib_dir/$version
+
+echo install executables to $libexec_dir/$version/
cp -pr fml/libexec/* $libexec_dir/$version
if [ ! -f $libexec_dir/fmlwrapper ];then
@@ -59,11 +65,13 @@ if [ ! -f $libexec_dir/fmlwrapper ];then
cp -pr fml/libexec/Standalone.pm $libexec_dir/
(
cd $libexec_dir/
- ln -s fmlwrapper fml.pl
- ln -s fmlwrapper distribute
- ln -s fmlwrapper command
- ln -s fmlwrapper fmlserv
- ln -s fmlwrapper mead
+
+ for x in fml.pl distribute command fmlserv mead
+ do
+ rm $x
+ echo link $x
+ ln -s fmlwrapper $x
+ done
)
fi