summaryrefslogtreecommitdiffstats
path: root/graphics/gpscorrelate/gpscorrelate.SlackBuild
diff options
context:
space:
mode:
Diffstat (limited to 'graphics/gpscorrelate/gpscorrelate.SlackBuild')
-rw-r--r--graphics/gpscorrelate/gpscorrelate.SlackBuild32
1 files changed, 22 insertions, 10 deletions
diff --git a/graphics/gpscorrelate/gpscorrelate.SlackBuild b/graphics/gpscorrelate/gpscorrelate.SlackBuild
index 2f6ee19199..5d42ea4223 100644
--- a/graphics/gpscorrelate/gpscorrelate.SlackBuild
+++ b/graphics/gpscorrelate/gpscorrelate.SlackBuild
@@ -4,8 +4,10 @@
# Written by David Spencer <nobbutl@yahoo.co.uk>
# This script is dedicated to the public domain
+# Modified by Robby Workman <rworkman@slackbuilds.org>
+
PRGNAM=gpscorrelate
-VERSION=1.5.6
+VERSION=1.6.0
ARCH=${ARCH:-i486}
BUILD=${BUILD:-1}
TAG=${TAG:-_SBo}
@@ -17,8 +19,13 @@ OUTPUT=${OUTPUT:-/tmp}
if [ "$ARCH" = "i486" ]; then
SLKCFLAGS="-O2 -march=i486 -mtune=i686"
+ LIBDIRSUFFIX=""
elif [ "$ARCH" = "i686" ]; then
SLKCFLAGS="-O2 -march=i686 -mtune=i686"
+ LIBDIRSUFFIX=""
+elif [ "$ARCH" = "x86_64" ]; then
+ SLKCFLAGS="-O2 -fPIC"
+ LIBDIRSUFFIX="64"
fi
set -e
@@ -32,23 +39,28 @@ cd $PRGNAM-$VERSION
chown -R root:root .
chmod -R u+w,go+r-w,a-s .
-make CFLAGS="$SLKCFLAGS $(pkg-config --cflags libxml-2.0 gtk+-2.0) -I/usr/include/exiv2"
+make CFLAGS+="$SLKCFLAGS"
mkdir -p $PKG/usr/bin
-for i in gpscorrelate gpscorrelate-gui ; do
- strip --strip-unneeded $i
- cp $i $PKG/usr/bin
-done
+cp gpscorrelate gpscorrelate-gui $PKG/usr/bin
+strip --strip-unneeded $PKG/usr/bin/*
+
+mkdir -p $PKG/usr/share/applications
+cat gpscorrelate.desktop > $PKG/usr/share/applications/gpscorrelate.desktop
-mkdir -p $PKG/usr/doc/$PRGNAM-$VERSION
-cp -a COPYING INSTALL README RELEASES command-line-options.txt \
+mkdir -p $PKG/usr/doc/$PRGNAM-$VERSION/html
+cp -a COPYING INSTALL README RELEASES \
$PKG/usr/doc/$PRGNAM-$VERSION
-( cd doc ; cp -a command.html concepts.html corr.png gui.html index.html \
- $PKG/usr/doc/$PRGNAM-$VERSION )
+cp -a doc/{{command,concepts,gui,index}.html,corr.png} \
+ $PKG/usr/doc/$PRGNAM-$VERSION/html
cat $CWD/$PRGNAM.SlackBuild > $PKG/usr/doc/$PRGNAM-$VERSION/$PRGNAM.SlackBuild
+mkdir -p $PKG/usr/man/man1
+gzip -9c gpscorrelate.1 > $PKG/usr/man/man1/gpscorrelate.1.gz
+
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.tgz