diff options
author | dsomero <xgizzmo@slackbuilds.org> | 2012-09-29 21:15:59 -0400 |
---|---|---|
committer | Robby Workman <rworkman@slackbuilds.org> | 2012-09-30 20:01:04 -0500 |
commit | 1c9ef34a7d669f701da3a4a04dcc94885592f1b3 (patch) | |
tree | a621ef52495ef8345a5701e2bde38a618f07c3cf /misc/megatunix | |
parent | ff3a0951e42b95b29e7f9ce4db85960a916f0324 (diff) | |
download | slackbuilds-1c9ef34a7d669f701da3a4a04dcc94885592f1b3.tar.gz |
misc/megatunix: Fixed (Handle desktop file)
Signed-off-by: dsomero <xgizzmo@slackbuilds.org>
Diffstat (limited to 'misc/megatunix')
-rw-r--r-- | misc/megatunix/doinst.sh | 3 | ||||
-rw-r--r-- | misc/megatunix/megatunix.SlackBuild | 3 |
2 files changed, 5 insertions, 1 deletions
diff --git a/misc/megatunix/doinst.sh b/misc/megatunix/doinst.sh new file mode 100644 index 0000000000..5fb28930db --- /dev/null +++ b/misc/megatunix/doinst.sh @@ -0,0 +1,3 @@ +if [ -x /usr/bin/update-desktop-database ]; then + /usr/bin/update-desktop-database -q usr/share/applications >/dev/null 2>&1 +fi diff --git a/misc/megatunix/megatunix.SlackBuild b/misc/megatunix/megatunix.SlackBuild index cc47791208..161ba696c8 100644 --- a/misc/megatunix/megatunix.SlackBuild +++ b/misc/megatunix/megatunix.SlackBuild @@ -18,7 +18,7 @@ PRGNAM=megatunix VERSION=0.9.23 -BUILD=${BUILD:-1} +BUILD=${BUILD:-2} TAG=${TAG:-_SBo} if [ -z "$ARCH" ]; then @@ -92,6 +92,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} |