diff options
Diffstat (limited to 'slackbuild/sbotools/sbotools.SlackBuild')
-rw-r--r-- | slackbuild/sbotools/sbotools.SlackBuild | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/slackbuild/sbotools/sbotools.SlackBuild b/slackbuild/sbotools/sbotools.SlackBuild index 6f296e5..c64ebd9 100644 --- a/slackbuild/sbotools/sbotools.SlackBuild +++ b/slackbuild/sbotools/sbotools.SlackBuild @@ -5,7 +5,7 @@ # Licensed under the WTFPL <http://sam.zoy.org/wtfpl/COPYING> PRGNAM=sbotools -VERSION=${VERSION:-1.7} +VERSION=${VERSION:-1.8} BUILD=${BUILD:-1} TAG=${TAG:-_SBo} @@ -31,12 +31,15 @@ find . \ \( -perm 666 -o -perm 664 -o -perm 600 -o -perm 444 -o -perm 440 -o \ -perm 400 \) -exec chmod 644 {} \; +# we set INSTALLMAN3DIR=none to elide the Sort::Versions.3 man page so that we +# don't clobber one from perl-Sort-Versions or Sort::Versions. ( cd SBO-Lib perl Makefile.PL \ PREFIX=/usr \ INSTALLDIRS=site \ INSTALLVENDORMAN1DIR=/usr/man/man1 \ - INSTALLVENDORMAN3DIR=/usr/man/man3 + INSTALLVENDORMAN3DIR=/usr/man/man3 \ + INSTALLMAN3DIR=none make make test make install DESTDIR=$PKG |