diff options
author | David Spencer <nobbutl@yahoo.co.uk> | 2010-05-12 17:39:54 +0200 |
---|---|---|
committer | David Somero <xgizzmo@slackbuilds.org> | 2010-05-12 17:39:54 +0200 |
commit | ad25d0c8a5d24ae065270c48fc610d7f8c8c942c (patch) | |
tree | c97856608ccc981d9e76dabb9c1b43ec89a325a1 /graphics/gpscorrelate/gpscorrelate.SlackBuild | |
parent | 0d2b158377287d2a9de95d069b1e2e0a7da132a7 (diff) | |
download | slackbuilds-ad25d0c8a5d24ae065270c48fc610d7f8c8c942c.tar.gz |
graphics/gpscorrelate: Updated for version 1.6.0
Diffstat (limited to 'graphics/gpscorrelate/gpscorrelate.SlackBuild')
-rw-r--r-- | graphics/gpscorrelate/gpscorrelate.SlackBuild | 32 |
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 |