perl/perl-PDF-Builder: Fix mandir.

Signed-off-by: Andrew Clemons <andrew.clemons@gmail.com>

Signed-off-by: Willy Sudiarto Raharjo <willysr@slackbuilds.org>
This commit is contained in:
Andrew Clemons 2021-08-25 22:42:31 +12:00 committed by Willy Sudiarto Raharjo
parent 952255bcab
commit 95621ec784
No known key found for this signature in database
GPG key ID: 3F617144D7238786

View file

@ -94,8 +94,6 @@ find $PKG -print0 | xargs -0 file | grep -e "executable" -e "shared object" | gr
| cut -f 1 -d : | xargs strip --strip-unneeded 2> /dev/null || true
mkdir -p $PKG/usr
mv $PKG/usr/local/share/man $PKG/usr
mv $PKG/usr/local/share $PKG/usr
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