This commit is contained in:
Martinez 2017-11-12 22:12:09 +01:00
commit 7e93ffe71f
4 changed files with 150 additions and 0 deletions

11
install.sh Executable file
View file

@ -0,0 +1,11 @@
#! /bin/bash
ROOT="${1}"
LIBDIR="${ROOT}/usr/lib/over/dedup"
BINDIR="${ROOT}/usr/bin"
BIN="dedup"
mkdir -p "${LIBDIR}"
cp *.py "${LIBDIR}"
mkdir -p "${BINDIR}"
ln -s "${LIBDIR}/${BIN}.py" "${BINDIR}/${BIN}"