diff options
author | dsomero <xgizzmo@slackbuilds.org> | 2012-09-30 12:00:26 -0400 |
---|---|---|
committer | Robby Workman <rworkman@slackbuilds.org> | 2012-09-30 20:01:09 -0500 |
commit | b7511040871c0b04311af04ace08112f55de7d53 (patch) | |
tree | d0395efbfbc3ea38d4a17e2b07aa73aca5016e56 /system/cutecom | |
parent | 1e1c254cd28c2843af59afbc75b89b13cf60b7d0 (diff) | |
download | slackbuilds-b7511040871c0b04311af04ace08112f55de7d53.tar.gz |
system/cutecom: Fixed (Handle desktop file)
Signed-off-by: dsomero <xgizzmo@slackbuilds.org>
Diffstat (limited to 'system/cutecom')
-rw-r--r-- | system/cutecom/cutecom.SlackBuild | 3 | ||||
-rw-r--r-- | system/cutecom/doinst.sh | 9 |
2 files changed, 11 insertions, 1 deletions
diff --git a/system/cutecom/cutecom.SlackBuild b/system/cutecom/cutecom.SlackBuild index da06e8b241..a2d304e26a 100644 --- a/system/cutecom/cutecom.SlackBuild +++ b/system/cutecom/cutecom.SlackBuild @@ -6,7 +6,7 @@ PRGNAM=cutecom VERSION=${VERSION:-0.22.0} -BUILD=${BUILD:-1} +BUILD=${BUILD:-2} TAG=${TAG:-_SBo} if [ -z "$ARCH" ]; then @@ -87,6 +87,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} diff --git a/system/cutecom/doinst.sh b/system/cutecom/doinst.sh new file mode 100644 index 0000000000..3e5691a052 --- /dev/null +++ b/system/cutecom/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 |