summaryrefslogtreecommitdiffstats
path: root/libraries/libpst/libpst.SlackBuild
diff options
context:
space:
mode:
Diffstat (limited to 'libraries/libpst/libpst.SlackBuild')
-rw-r--r--libraries/libpst/libpst.SlackBuild12
1 files changed, 7 insertions, 5 deletions
diff --git a/libraries/libpst/libpst.SlackBuild b/libraries/libpst/libpst.SlackBuild
index 20ea5e6abd..d49ad4f8f0 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