diff options
Diffstat (limited to 'system/mdocml/mdocml.SlackBuild')
-rw-r--r-- | system/mdocml/mdocml.SlackBuild | 12 |
1 files changed, 9 insertions, 3 deletions
diff --git a/system/mdocml/mdocml.SlackBuild b/system/mdocml/mdocml.SlackBuild index 1a24014660277..4cb4fcdd9e4f2 100644 --- a/system/mdocml/mdocml.SlackBuild +++ b/system/mdocml/mdocml.SlackBuild @@ -1,6 +1,6 @@ #!/bin/sh -# Copyright (c) 2014 LEVAI Daniel +# Copyright (c) 2014-2017 LEVAI Daniel # All rights reserved. # # * Redistribution and use in source and binary forms, with or without @@ -24,7 +24,7 @@ # ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. PRGNAM=mdocml -VERSION=${VERSION:-1.13.4} +VERSION=${VERSION:-1.14.1} BUILD=${BUILD:-1} TAG=${TAG:-_SBo} @@ -78,7 +78,7 @@ fi ./configure # The makefile uses hard links :O -sed -i -e 's/ln -f/ln -sf/' Makefile +sed -i -e 's/ln -f/ln -sf/' Makefile.local CFLAGS=$SLKCFLAGS \ make @@ -87,6 +87,12 @@ make install \ PREFIX=/usr \ LIBDIR=/usr/lib${LIBDIRSUFFIX} +# Fix symlinks +for link in $(find ${PKG}/usr/bin ${PKG}/usr/sbin -type l);do + TARGET=$(readlink ${link}) + ln -fs ${TARGET##${PKG}} ${link} +done + 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 |