1
0
mirror of https://github.com/wting/autojump synced 2024-09-28 05:50:47 +00:00
wting_autojump/install.sh

170 lines
4.5 KiB
Bash
Raw Normal View History

#!/usr/bin/env bash
2009-05-13 09:32:19 +00:00
#Copyright Joel Schaerer 2008, 2009
#This file is part of autojump
#autojump is free software: you can redistribute it and/or modify
#it under the terms of the GNU General Public License as published by
#the Free Software Foundation, either version 3 of the License, or
#(at your option) any later version.
#
#autojump is distributed in the hope that it will be useful,
#but WITHOUT ANY WARRANTY; without even the implied warranty of
#MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
#GNU General Public License for more details.
#
#You should have received a copy of the GNU General Public License
#along with autojump. If not, see <http://www.gnu.org/licenses/>.
2012-02-08 19:22:39 +00:00
function add_msg {
echo
echo "Please add the line to ~/.${2}rc :"
echo
if [ "${1}" == "global" ]; then
echo -e "\t[[ -f /etc/profile.d/autojump.${2} ]] && source /etc/profile.d/autojump.${2}"
2012-02-08 19:22:39 +00:00
elif [ "${1}" == "local" ]; then
echo -e "\t[[ -f ~/.autojump/etc/profile.d/autojump.${2} ]] && source ~/.autojump/etc/profile.d/autojump.${2}"
2012-02-08 19:22:39 +00:00
fi
echo
echo "You need to run 'source ~/.${2}rc' before you can start using autojump."
2012-02-08 19:22:39 +00:00
echo
echo "To remove autojump, run './uninstall.sh'"
echo
}
function help_msg {
echo "sudo ./install.sh [--local] [--prefix /usr/local] [--zsh]"
2012-02-07 05:56:46 +00:00
}
# Default install directory.
prefix=/usr
2012-02-08 19:22:39 +00:00
shell="bash"
local=
2011-09-27 14:07:37 +00:00
user=${SUDO_USER:-${USER}}
OS=`uname`
2011-11-30 09:24:25 +00:00
if [ $OS == 'Darwin' ]; then
2011-11-30 09:24:25 +00:00
user_home=$(dscl . -search /Users UniqueID ${user} | cut -d: -f6)
else
2011-11-30 09:24:25 +00:00
user_home=$(getent passwd ${user} | cut -d: -f6)
fi
2012-02-08 01:40:57 +00:00
bashrc_file=${user_home}/.bashrc
2011-09-27 14:07:37 +00:00
# Command line parsing
while true; do
case "$1" in
2012-02-08 01:40:57 +00:00
-h|--help|-\?)
2012-02-08 19:22:39 +00:00
help_msg;
2012-02-08 01:40:57 +00:00
exit 0
;;
-l|--local)
local=true
2012-02-08 01:40:57 +00:00
prefix=~/.autojump
shift
;;
-p|--prefix)
if [ $# -gt 1 ]; then
prefix=$2; shift 2
else
2012-02-08 09:32:30 +00:00
echo "--prefix or -p require an argument" 1>&2
exit 1
2012-02-08 01:40:57 +00:00
fi
;;
2012-02-08 19:22:39 +00:00
-z|--zsh)
shell="zsh"
shift
;;
2012-02-08 01:40:57 +00:00
--)
shift
break
;;
-*)
echo "invalid option: $1" 1>&2;
2012-02-08 19:22:39 +00:00
help_msg;
2012-02-08 01:40:57 +00:00
exit 1
;;
*)
break
;;
esac
done
# check Python version
python_version=`python -c 'import sys; print(sys.version_info[:])'`
if [[ ${python_version:1:1} -eq 2 && ${python_version:4:1} -lt 6 ]]; then
echo
echo "Incompatible Python version, please upgrade to v2.6+ or v3.0+."
if [[ ${python_version:4:1} -gt 3 ]]; then
echo
echo "Alternatively, you can download v12 that supports Python v2.4+ from:"
echo
echo -e "\thttps://github.com/joelthelion/autojump/tags"
echo
fi
exit 1
fi
# check for valid options
if [[ ${UID} != 0 ]] && [ ! ${local} ]; then
echo
2012-02-08 01:40:57 +00:00
echo "Please rerun as root or use the --local option."
echo
2012-02-08 01:40:57 +00:00
exit 1
fi
2012-02-08 20:04:41 +00:00
echo
echo "Installing files to ${prefix} ..."
echo
# add git revision to autojump
2011-09-16 06:35:20 +00:00
./git-version.sh
# INSTALL AUTOJUMP
2011-09-21 11:04:50 +00:00
mkdir -p ${prefix}/share/autojump/
mkdir -p ${prefix}/bin/
mkdir -p ${prefix}/share/man/man1/
cp -v icon.png ${prefix}/share/autojump/
cp -v jumpapplet ${prefix}/bin/
cp -v autojump ${prefix}/bin/
cp -v autojump.1 ${prefix}/share/man/man1/
2012-02-08 19:22:39 +00:00
# global installation
if [ ! ${local} ]; then
2012-02-08 19:22:39 +00:00
# install _j to the first accessible directory
if [ ${shell} == "zsh" ]; then
success=
fpath=`/usr/bin/env zsh -c 'echo $fpath'`
for f in ${fpath}; do
cp -v _j ${f} && success=true && break
done
if [ ! ${success} ]; then
echo
2012-02-08 19:22:39 +00:00
echo "Couldn't find a place to put the autocompletion file, please copy _j into your \$fpath"
echo "Installing the rest of autojump ..."
echo
2012-02-08 19:22:39 +00:00
fi
fi
2012-02-08 01:40:57 +00:00
if [ -d "/etc/profile.d" ]; then
cp -v autojump.sh /etc/profile.d/
2012-02-08 19:22:39 +00:00
cp -v autojump.${shell} /etc/profile.d/
add_msg "global" ${shell}
2012-02-08 01:40:57 +00:00
else
echo "Your distribution does not have a '/etc/profile.d/' directory, please create it manually or use the local install option."
fi
2012-02-08 19:22:39 +00:00
else # local installation
2012-02-08 01:40:57 +00:00
mkdir -p ${prefix}/etc/profile.d/
cp -v autojump.sh ${prefix}/etc/profile.d/
2012-02-08 19:22:39 +00:00
cp -v autojump.${shell} ${prefix}/etc/profile.d/
2012-02-08 19:22:39 +00:00
if [ ${shell} == "zsh" ]; then
mkdir -p ${prefix}/functions/
cp _j ${prefix}/functions/
fi
add_msg "local" ${shell}
2009-02-19 21:09:59 +00:00
fi