2
0
mirror of https://github.com/garabik/grc.git synced 2024-09-14 17:21:29 +02:00
bash-color-grc/install.sh
2015-11-01 19:51:55 +01:00

30 lines
492 B
Bash
Executable File

#!/bin/sh
set -e
PREFIX=$1
ETCPREFIX=$2
if [ -z $PREFIX ]; then
PREFIX=/usr/local
fi
BINDIR=$PREFIX/bin
LIBDIR=$PREFIX/share/grc
MANDIR=$PREFIX/share/man
CONFDIR=$ETCPREFIX/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
mkdir -p $CONFDIR/man1
cp -fv grc.conf $CONFDIR
mkdir -p $PROFILEDIR/man1
cp -fv grc.bashrc $PROFILEDIR