diff options
author | dsomero <xgizzmo@slackbuilds.org> | 2012-09-29 21:16:34 -0400 |
---|---|---|
committer | Robby Workman <rworkman@slackbuilds.org> | 2012-09-30 20:01:04 -0500 |
commit | 1ed107ac9e88d72db2fc21cccd18602800274c6b (patch) | |
tree | 7f56952028a537ad0c6a891521ce118a046f345a /misc | |
parent | 1c9ef34a7d669f701da3a4a04dcc94885592f1b3 (diff) | |
download | slackbuilds-1ed107ac9e88d72db2fc21cccd18602800274c6b.tar.gz |
misc/tangogps: Fixed (Handle desktop file)
Signed-off-by: dsomero <xgizzmo@slackbuilds.org>
Diffstat (limited to 'misc')
-rw-r--r-- | misc/tangogps/doinst.sh | 3 | ||||
-rw-r--r-- | misc/tangogps/tangogps.SlackBuild | 5 |
2 files changed, 5 insertions, 3 deletions
diff --git a/misc/tangogps/doinst.sh b/misc/tangogps/doinst.sh new file mode 100644 index 0000000000..5fb28930db --- /dev/null +++ b/misc/tangogps/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/tangogps/tangogps.SlackBuild b/misc/tangogps/tangogps.SlackBuild index 28b343a07a..224aeed867 100644 --- a/misc/tangogps/tangogps.SlackBuild +++ b/misc/tangogps/tangogps.SlackBuild @@ -5,15 +5,13 @@ PRGNAM=tangogps VERSION=0.99.4 -BUILD=${BUILD:-1} +BUILD=${BUILD:-2} TAG=${TAG:-_SBo} -# Automatically determine the architecture we're building on: if [ -z "$ARCH" ]; then case "$( uname -m )" in i?86) ARCH=i486 ;; arm*) ARCH=arm ;; - # Unless $ARCH is already set, use uname -m for all other archs: *) ARCH=$( uname -m ) ;; esac fi @@ -71,6 +69,7 @@ make tangogpsdocdir=/usr/doc/$PRGNAM-$VERSION install-strip DESTDIR=$PKG 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} |