diff options
Diffstat (limited to 'libraries/libimobiledevice/libimobiledevice.SlackBuild')
-rw-r--r-- | libraries/libimobiledevice/libimobiledevice.SlackBuild | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/libraries/libimobiledevice/libimobiledevice.SlackBuild b/libraries/libimobiledevice/libimobiledevice.SlackBuild index fe88c6197bf2..2d7087cd6ae2 100644 --- a/libraries/libimobiledevice/libimobiledevice.SlackBuild +++ b/libraries/libimobiledevice/libimobiledevice.SlackBuild @@ -28,7 +28,7 @@ PRGNAM=libimobiledevice -VERSION=${VERSION:-0.9.7} +VERSION=${VERSION:-1.0.2} BUILD=${BUILD:-1} TAG=${TAG:-_SBo} @@ -93,6 +93,9 @@ make install DESTDIR=$PKG find $PKG | xargs file | grep -e "executable" -e "shared object" | grep ELF \ | cut -f 1 -d : | xargs strip --strip-unneeded 2> /dev/null || true +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 \ COPYING* README AUTHORS docs/* \ |