summaryrefslogtreecommitdiffstats
path: root/libraries/gobject-introspection/gobject-introspection.SlackBuild
diff options
context:
space:
mode:
author ponce2011-10-25 07:58:56 +0200
committer ponce2011-10-25 07:58:56 +0200
commitdda3176015f2bffe524a41fb876d7fce1e07bc26 (patch)
tree0cf7e111b6805b87410813acf0e8c86b5ecbe641 /libraries/gobject-introspection/gobject-introspection.SlackBuild
parent3b1a33551c6717ae80b4635f5654697bc97442b4 (diff)
downloadold.slackbuilds-dda3176015f2bffe524a41fb876d7fce1e07bc26.tar.gz
20111025.1 global branch merge.current-20111025.1
Diffstat (limited to 'libraries/gobject-introspection/gobject-introspection.SlackBuild')
-rw-r--r--libraries/gobject-introspection/gobject-introspection.SlackBuild12
1 files changed, 5 insertions, 7 deletions
diff --git a/libraries/gobject-introspection/gobject-introspection.SlackBuild b/libraries/gobject-introspection/gobject-introspection.SlackBuild
index 1c7a18383e..35409a1daa 100644
--- a/libraries/gobject-introspection/gobject-introspection.SlackBuild
+++ b/libraries/gobject-introspection/gobject-introspection.SlackBuild
@@ -23,7 +23,7 @@
# ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
PRGNAM=gobject-introspection
-VERSION=${VERSION:-0.10.6}
+VERSION=${VERSION:-0.10.8}
BUILD=${BUILD:-1}
TAG=${TAG:-_SBo}
@@ -56,7 +56,7 @@ else
LIBDIRSUFFIX=""
fi
-DOCS="AUTHORS CONTRIBUTORS COPYING NEWS README TODO"
+DOCS="AUTHORS CONTRIBUTORS COPYING* NEWS README TODO"
set -e
@@ -86,13 +86,11 @@ CXXFLAGS="$SLKCFLAGS" \
make
make install DESTDIR=$PKG
-find $PKG | xargs file | grep -e "executable" -e "shared object" | grep ELF \
+find $PKG -print0 | xargs -0 file | grep -e "executable" -e "shared object" | grep ELF \
| cut -f 1 -d : | xargs strip --strip-unneeded 2> /dev/null || true
-( cd $PKG/usr/man
- find . -type f -exec gzip -9 {} \;
- for i in $( find . -type l ) ; do ln -s $( readlink $i ).gz $i.gz ; rm $i ; done
-)
+find $PKG/usr/man -type f -exec gzip -9 {} \;
+for i in $( find $PKG/usr/man -type l ) ; do ln -s $( readlink $i ).gz $i.gz ; rm $i ; done
mkdir -p $PKG/usr/doc/$PRGNAM-$VERSION
cp -a $DOCS $PKG/usr/doc/$PRGNAM-$VERSION