diff options
author | dsomero <xgizzmo@slackbuilds.org> | 2012-09-29 18:00:31 -0400 |
---|---|---|
committer | Robby Workman <rworkman@slackbuilds.org> | 2012-09-29 17:17:46 -0500 |
commit | 5547f1379c48c64f7bd26420ed9d2b562849cd43 (patch) | |
tree | aa1017cfe2c71b6c24968d84cf499a8e74c2691a /games/zdoom | |
parent | 8648c6b66a452bf4e1c10a2c19a8fb5e5217de33 (diff) | |
download | slackbuilds-5547f1379c48c64f7bd26420ed9d2b562849cd43.tar.gz |
games/zdoom: Fixed (Handle desktop file)
Signed-off-by: dsomero <xgizzmo@slackbuilds.org>
Diffstat (limited to 'games/zdoom')
-rw-r--r-- | games/zdoom/doinst.sh | 4 | ||||
-rw-r--r-- | games/zdoom/zdoom.SlackBuild | 3 |
2 files changed, 6 insertions, 1 deletions
diff --git a/games/zdoom/doinst.sh b/games/zdoom/doinst.sh new file mode 100644 index 0000000000..4e8ba7071d --- /dev/null +++ b/games/zdoom/doinst.sh @@ -0,0 +1,4 @@ +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/games/zdoom/zdoom.SlackBuild b/games/zdoom/zdoom.SlackBuild index 760d748b1f..7a1419674c 100644 --- a/games/zdoom/zdoom.SlackBuild +++ b/games/zdoom/zdoom.SlackBuild @@ -6,7 +6,7 @@ PRGNAM=zdoom VERSION=${VERSION:-2.6.0} -BUILD=${BUILD:-1} +BUILD=${BUILD:-2} TAG=${TAG:-_SBo} if [ -z "$ARCH" ]; then @@ -84,6 +84,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} |