summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
author Ebben Aries2021-12-18 18:45:30 +0100
committer Willy Sudiarto Raharjo2021-12-19 03:19:56 +0100
commitc99dc9bb85ef88464c248dc6060a3a2c901fa4c9 (patch)
treecf7ef6ef9f1a73200241b2d536f1a363e3eaf231
parent6c069bb3d8ec20b2e09fd4b57017187390b2491c (diff)
downloadslackbuilds-c99dc9bb85ef88464c248dc6060a3a2c901fa4c9.tar.gz
system/restic: man/completion files for version 0.12.1
Signed-off-by: Willy Sudiarto Raharjo <willysr@slackbuilds.org>
-rw-r--r--system/restic/doinst.sh15
-rw-r--r--system/restic/restic.SlackBuild10
2 files changed, 25 insertions, 0 deletions
diff --git a/system/restic/doinst.sh b/system/restic/doinst.sh
new file mode 100644
index 0000000000..4564772e86
--- /dev/null
+++ b/system/restic/doinst.sh
@@ -0,0 +1,15 @@
+config() {
+ NEW="$1"
+ OLD="$(dirname $NEW)/$(basename $NEW .new)"
+ # If there's no config file by that name, mv it over:
+ if [ ! -r $OLD ]; then
+ mv $NEW $OLD
+ elif [ "$(cat $OLD | md5sum)" = "$(cat $NEW | md5sum)" ]; then
+ # toss the redundant copy
+ rm $NEW
+ fi
+ # Otherwise, we leave the .new copy for the admin to consider...
+}
+
+config usr/share/bash-completion/completions/restic.new
+config usr/share/zsh/site-functions/_restic.new
diff --git a/system/restic/restic.SlackBuild b/system/restic/restic.SlackBuild
index 875489f209..045f339144 100644
--- a/system/restic/restic.SlackBuild
+++ b/system/restic/restic.SlackBuild
@@ -82,11 +82,21 @@ find -L . \
mkdir -p $PKG/usr/bin
install -D -m 0755 $PRGNAM $PKG/usr/bin/$PRGNAM
+mkdir -p $PKG/usr/man/man1
+$PKG/usr/bin/$PRGNAM generate --man $PKG/usr/man/man1/
+
+mkdir -p $PKG/usr/share/bash-completion/completions
+$PKG/usr/bin/$PRGNAM generate --bash-completion $PKG/usr/share/bash-completion/completions/restic
+
+mkdir -p $PKG/usr/share/zsh/site-functions
+$PKG/usr/bin/$PRGNAM generate --zsh-completion $PKG/usr/share/zsh/site-functions/_restic
+
mkdir -p $PKG/usr/doc/$PRGNAM-$VERSION
cat $CWD/$PRGNAM.SlackBuild > $PKG/usr/doc/$PRGNAM-$VERSION/$PRGNAM.SlackBuild
mkdir -p $PKG/install
cat $CWD/slack-desc > $PKG/install/slack-desc
+cat $CWD/doinst.sh > $PKG/install/doinst.sh
cd $PKG
/sbin/makepkg -l y -c n $OUTPUT/$PRGNAM-$VERSION-$ARCH-$BUILD$TAG.$PKGTYPE