diff options
Diffstat (limited to 'development/cupsddk/cupsddk.SlackBuild')
-rw-r--r-- | development/cupsddk/cupsddk.SlackBuild | 19 |
1 files changed, 11 insertions, 8 deletions
diff --git a/development/cupsddk/cupsddk.SlackBuild b/development/cupsddk/cupsddk.SlackBuild index 98844a1565549..2dfbdfe5d9d6f 100644 --- a/development/cupsddk/cupsddk.SlackBuild +++ b/development/cupsddk/cupsddk.SlackBuild @@ -1,14 +1,14 @@ #!/bin/sh # Slackware build script for cupsddk -# Written by Iskar Enev iskar.enev@gmail.com +# Written by Iskar Enev <iskar.enev[@]gmail.com> PRGNAM=cupsddk -VERSION=1.1.1 +VERSION=1.2.2 ARCH=${ARCH:-i486} BUILD=${BUILD:-1} TAG=${TAG:-_SBo} -CWD=`pwd` +CWD=$(pwd) TMP=${TMP:-/tmp/SBo} PKG=$TMP/package-$PRGNAM OUTPUT=${OUTPUT:-/tmp} @@ -28,6 +28,9 @@ cd $PRGNAM-$VERSION || exit 1 chown -R root:root . chmod -R u+w,go+r-w,a-s . +# foo-fr.po is missing while it's needed at compile time and later for testing purposes. +( cd ppdc ; ln -sf ../po/fr.po foo-fr.po ) + CFLAGS="$SLKCFLAGS" \ CXXFLAGS="$SLKCFLAGS" \ ./configure \ @@ -41,16 +44,16 @@ CXXFLAGS="$SLKCFLAGS" \ make || exit 1 make BUILDROOT=$PKG install || exit 1 -(cd $PKG - find . | xargs file | grep "executable" | grep ELF | cut -f 1 -d : | xargs strip --strip-unneeded 2> /dev/null - find . | xargs file | grep "shared object" | grep ELF | cut -f 1 -d : | xargs strip --strip-unneeded 2> /dev/null +( cd $PKG + find . | xargs file | grep "executable" | grep ELF | cut -f 1 -d : | xargs strip --strip-unneeded 2> /dev/null + find . | xargs file | grep "shared object" | grep ELF | cut -f 1 -d : | xargs strip --strip-unneeded 2> /dev/null ) mkdir -p $PKG/usr/share/pixmaps/$PRGNAM cp -a icons/* $PKG/usr/share/pixmaps/$PRGNAM -cp -a CHANGES.txt CREDITS.txt FAQ.txt INSTALL.txt LICENSE* README.txt \ - doc/*.html doc/*.xml doc/*.pdf doc/*.book $PKG/usr/doc/$PRGNAM-$VERSION +cp -a *.txt *.html doc/*.html doc/*.xml doc/*.pdf doc/*.book doc/images \ + $PKG/usr/doc/$PRGNAM-$VERSION cp -a examples/* $PKG/usr/doc/$PRGNAM-$VERSION/examples cat $CWD/$PRGNAM.SlackBuild > $PKG/usr/doc/$PRGNAM-$VERSION/$PRGNAM.SlackBuild |