2
0
mirror of https://github.com/garabik/grc.git synced 2024-09-18 17:31:29 +02:00
bash-color-grc/install.sh
2015-05-19 22:32:05 +09:00

25 lines
418 B
Bash
Executable File

#!/bin/sh
set -e
PREFIX=$1
if [ -z $PREFIX ]; then
PREFIX=/usr/local
fi
BINDIR=$PREFIX/bin
LIBDIR=$PREFIX/share/grc
MANDIR=$PREFIX/share/man
CONFDIR=/etc
PROFILEDIR=$CONFDIR/profile.d
mkdir -p $BINDIR || true
cp -fv grc grcat $BINDIR
mkdir -p $LIBDIR || true
cp -fv conf.* $LIBDIR
mkdir -p $MANDIR/man1
cp -fv grc.1 $MANDIR/man1
cp -fv grcat.1 $MANDIR/man1
cp -fv grc.conf $CONFDIR
cp -fv grc.bashrc $PROFILEDIR