office/multivalent-tool-pdf: Updated for version 0.8.5.20060102.

Signed-off-by: David Spencer <idlemoor@slackbuilds.org>
This commit is contained in:
Alexander Verbovetsky 2017-01-31 20:22:03 +00:00 committed by Willy Sudiarto Raharjo
parent 7ae714a6cd
commit d63cc2cc24
No known key found for this signature in database
GPG Key ID: 887B8374D7333381
2 changed files with 16 additions and 1 deletions

View File

@ -0,0 +1,14 @@
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 etc/bash_completion.d/multivalent-tool-pdf.new

View File

@ -58,7 +58,7 @@ sed --in-place "s/@VERSION@/$VERSION/g" $PKG/usr/bin/multivalent-tool-pdf
mkdir -p $PKG/etc/bash_completion.d/
install -m 0644 -o root -g root $CWD/multivalent-tool-pdf.bash_completion \
$PKG/etc/bash_completion.d/multivalent-tool-pdf
$PKG/etc/bash_completion.d/multivalent-tool-pdf.new
mkdir -p $PKG/usr/doc/$PRGNAM-$VERSION
cp -a research tool-pdf-doc HowToRun.html $PKG/usr/doc/$PRGNAM-$VERSION
@ -68,6 +68,7 @@ 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:-tgz}