mirror of
https://gitlab.com/dslackw/slpkg.git
synced 2025-01-20 10:26:44 +01:00
Added doinst.sh
Signed-off-by: Dimitris Zlatanidis <d.zlatanidis@gmail.com>
This commit is contained in:
parent
68a3259298
commit
5e377be426
1 changed files with 19 additions and 0 deletions
19
slackbuild/doinst.sh
Normal file
19
slackbuild/doinst.sh
Normal file
|
@ -0,0 +1,19 @@
|
||||||
|
config() {
|
||||||
|
NEW="$1"
|
||||||
|
OLD="$(dirname $NEW)/$(basename $NEW .new)"
|
||||||
|
if [ ! -r $OLD ]; then
|
||||||
|
mv $NEW $OLD
|
||||||
|
elif [ "$(cat $OLD | md5sum)" = "$(cat $NEW | md5sum)" ]; then
|
||||||
|
rm $NEW
|
||||||
|
fi
|
||||||
|
}
|
||||||
|
|
||||||
|
CONFIGS="slpkg.conf repositories.conf blacklist slackware-mirrors default-repositories \
|
||||||
|
custom-repositories rlworkman.deps pkg_security"
|
||||||
|
for file in $CONFIGS; do
|
||||||
|
config etc/slpkg/${file}.new
|
||||||
|
done
|
||||||
|
|
||||||
|
if [ -x /usr/bin/update-desktop-database ]; then
|
||||||
|
/usr/bin/update-desktop-database -q usr/share/applications >/dev/null 2>&1
|
||||||
|
fi
|
Loading…
Reference in a new issue