diff options
author | David Somero <dsomero@hotmail.com> | 2010-08-10 01:39:52 +0100 |
---|---|---|
committer | Michiel van Wessem <michiel@slackbuilds.org> | 2010-08-10 01:39:52 +0100 |
commit | 25385d9064370acf8f1283d546623f0b158c14a8 (patch) | |
tree | 560442a1fd5ae9434b83c9d67aa97c964e92ca28 /libraries/libimobiledevice/libimobiledevice.SlackBuild | |
parent | a054269999b9b4dddf02027e0675a3463dc91339 (diff) | |
download | slackbuilds-25385d9064370acf8f1283d546623f0b158c14a8.tar.gz |
libraries/libimobiledevice: Updated for version 1.0.2.
Signed-off-by: Michiel van Wessem <michiel@slackbuilds.org>
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 fe88c6197b..2d7087cd6a 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/* \ |