diff options
author | dsomero <xgizzmo@slackbuilds.org> | 2012-09-30 11:38:11 -0400 |
---|---|---|
committer | Robby Workman <rworkman@slackbuilds.org> | 2012-09-30 20:01:08 -0500 |
commit | 45697f5eb9e51a9a29ca54d3e47640f8267aabad (patch) | |
tree | dc41ae7ae008aedce306933730f34312c40b3f2e | |
parent | ed051e96de6e4dffcdecb86dfc5f99dfdd3325de (diff) | |
download | slackbuilds-45697f5eb9e51a9a29ca54d3e47640f8267aabad.tar.gz |
office/kbgoffice: Fixed (Handle icon and desktop files)
Signed-off-by: dsomero <xgizzmo@slackbuilds.org>
-rw-r--r-- | office/kbgoffice/doinst.sh | 9 | ||||
-rw-r--r-- | office/kbgoffice/kbgoffice.SlackBuild | 3 |
2 files changed, 11 insertions, 1 deletions
diff --git a/office/kbgoffice/doinst.sh b/office/kbgoffice/doinst.sh new file mode 100644 index 0000000000..3e5691a052 --- /dev/null +++ b/office/kbgoffice/doinst.sh @@ -0,0 +1,9 @@ +if [ -x /usr/bin/update-desktop-database ]; then + /usr/bin/update-desktop-database -q usr/share/applications >/dev/null 2>&1 +fi + +if [ -e usr/share/icons/hicolor/icon-theme.cache ]; then + if [ -x /usr/bin/gtk-update-icon-cache ]; then + /usr/bin/gtk-update-icon-cache usr/share/icons/hicolor >/dev/null 2>&1 + fi +fi diff --git a/office/kbgoffice/kbgoffice.SlackBuild b/office/kbgoffice/kbgoffice.SlackBuild index 97cad0b25b..ef76bd4512 100644 --- a/office/kbgoffice/kbgoffice.SlackBuild +++ b/office/kbgoffice/kbgoffice.SlackBuild @@ -7,7 +7,7 @@ PRGNAM=kbgoffice VERSION=2.0 -BUILD=${BUILD:-1} +BUILD=${BUILD:-2} TAG=${TAG:-_SBo} if [ -z "$ARCH" ]; then @@ -75,6 +75,7 @@ find $PKG/usr/doc/$PRGNAM-$VERSION -type f -exec chown root:root {} \; -exec chm 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} |