diff options
author | B Watson <yalhcru@gmail.com> | 2014-03-14 16:41:22 +0700 |
---|---|---|
committer | Erik Hanson <erik@slackbuilds.org> | 2014-03-21 13:01:15 -0500 |
commit | ca636cbdb2596d9b8f5cfe7caf2dc3e7ee39dbe9 (patch) | |
tree | 2791d8e6b9775bc7bd4beae1b7969f2a731e22ea /libraries/libpst/libpst.SlackBuild | |
parent | bdafd82aae90befcb289cfc17cbf348c7e17fde8 (diff) |
libraries/libpst: Updated for version 0.6.63.
Signed-off-by: Willy Sudiarto Raharjo <willysr@slackbuilds.org>
Diffstat (limited to 'libraries/libpst/libpst.SlackBuild')
-rw-r--r-- | libraries/libpst/libpst.SlackBuild | 12 |
1 files changed, 7 insertions, 5 deletions
diff --git a/libraries/libpst/libpst.SlackBuild b/libraries/libpst/libpst.SlackBuild index 20ea5e6abdfc..d49ad4f8f044 100644 --- a/libraries/libpst/libpst.SlackBuild +++ b/libraries/libpst/libpst.SlackBuild @@ -23,8 +23,13 @@ # OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF # ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. +# 20140314 bkw +# - took over maintenance +# - upgrade to 0.6.63 +# - make install-strip instead of slow find stuff + PRGNAM=libpst -VERSION=${VERSION:-0.6.55} +VERSION=${VERSION:-0.6.63} BUILD=${BUILD:-1} TAG=${TAG:-_SBo} @@ -85,13 +90,10 @@ CXXFLAGS="$SLKCFLAGS" \ make # ./configure options --docdir and --htmldir have no effect, # it is necessary to override "htmldir" and "htmldeveldir" -make install DESTDIR=$PKG \ +make install-strip DESTDIR=$PKG \ htmldir=/usr/doc/$PRGNAM-$VERSION \ htmldeveldir=/usr/doc/$PRGNAM-$VERSION/devel -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 - 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 |