summaryrefslogtreecommitdiffstats
path: root/libraries/gobject-introspection/gobject-introspection.SlackBuild
diff options
context:
space:
mode:
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