diff options
author | Frank Caraballo <fecaraballo{at}gmail{dot}com> | 2011-05-07 20:26:47 -0500 |
---|---|---|
committer | Robby Workman <rworkman@slackbuilds.org> | 2011-05-16 22:15:20 -0500 |
commit | 0015d60fa7f1d070456675484df86c124560a93d (patch) | |
tree | ec4a791792e3f05aa5b7eb059c28a1cc3e20b3fe /graphics/kipi-plugins/kipi-plugins.SlackBuild | |
parent | 907290a3793974f5ee4e83334a8dfd5212782693 (diff) | |
download | slackbuilds-0015d60fa7f1d070456675484df86c124560a93d.tar.gz |
graphics/kipi-plugins: Updated for version 1.9.0.
Signed-off-by: Robby Workman <rworkman@slackbuilds.org>
Diffstat (limited to 'graphics/kipi-plugins/kipi-plugins.SlackBuild')
-rw-r--r-- | graphics/kipi-plugins/kipi-plugins.SlackBuild | 29 |
1 files changed, 13 insertions, 16 deletions
diff --git a/graphics/kipi-plugins/kipi-plugins.SlackBuild b/graphics/kipi-plugins/kipi-plugins.SlackBuild index afaceafee8..32f8a16c0e 100644 --- a/graphics/kipi-plugins/kipi-plugins.SlackBuild +++ b/graphics/kipi-plugins/kipi-plugins.SlackBuild @@ -2,7 +2,7 @@ # Slackware build script for Kipi Plugins -# Copyright 2007-2010 Frank Caraballo <fecaraballo{at}gmail{dot}com> +# Copyright 2007-2011 Frank Caraballo <fecaraballo{at}gmail{dot}com> # All rights reserved. # # Redistribution and use of this script, with or without modification, is @@ -23,16 +23,14 @@ # ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. PRGNAM=kipi-plugins -VERSION=${VERSION:-1.0.0} +VERSION=${VERSION:-1.9.0} BUILD=${BUILD:-1} 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 @@ -62,7 +60,7 @@ rm -rf $PKG mkdir -p $TMP $PKG $OUTPUT cd $TMP rm -rf $PRGNAM-$VERSION -tar xvf $CWD/$PRGNAM-$VERSION.tar.bz2 +tar xvf $CWD/$PRGNAM-$VERSION.tar.?z* cd $PRGNAM-$VERSION chown -R root:root . find . \ @@ -71,27 +69,26 @@ find . \ \( -perm 666 -o -perm 664 -o -perm 600 -o -perm 444 -o -perm 440 -o -perm 400 \) \ -exec chmod 644 {} \; -# Patch kipi-plugins so it compiles on KDE 4.2.x -# http://www.digikam.org/drupal/node/492 -patch -p1 < $CWD/$PRGNAM-kde4.2.patch - -mkdir build && cd build +mkdir -p build +cd build cmake \ - -DCMAKE_C_FLAGS="$SLKCFLAGS" \ - -DCMAKE_CXX_FLAGS="$SLKCFLAGS" \ + -DCMAKE_C_FLAGS_RELEASE:STRING="$SLKCFLAGS" \ + -DCMAKE_CXX_FLAGS_RELEASE:STRING="$SLKCFLAGS" \ + -DCMAKE_INSTALL_PREFIX=/usr \ -DLIB_SUFFIX=${LIBDIRSUFFIX} \ -DLIB_INSTALL_DIR:PATH=/usr/lib${LIBDIRSUFFIX} \ - -DCMAKE_INSTALL_PREFIX=/usr \ - .. + -DSYSCONF_INSTALL_DIR=/etc/kde \ + -DCMAKE_BUILD_TYPE=Release .. make make install DESTDIR=$PKG -cd - +cd .. find $PKG | xargs file | grep -e "executable" -e "shared object" | grep ELF \ | cut -f 1 -d : | xargs strip --strip-unneeded 2> /dev/null || true mkdir -p $PKG/usr/doc/$PRGNAM-$VERSION -cp -a AUTHORS ChangeLog COPYING* HACKING INSTALL NEWS README tips TODO \ +cp -a \ + AUTHORS ChangeLog COPYING* HACKING INSTALL NEWS README tips TODO \ $PKG/usr/doc/$PRGNAM-$VERSION cat $CWD/$PRGNAM.SlackBuild > $PKG/usr/doc/$PRGNAM-$VERSION/$PRGNAM.SlackBuild |