<!DOCTYPE html>
<html>
  <head>
    <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
  </head>
  <body>
    <div class="moz-cite-prefix">Il 07/04/24 19:24, Giancarlo Dessì ha
      scritto:<br>
    </div>
    <blockquote type="cite"
      cite="mid:530a32ec-122a-4564-ac36-f8ec268f6747@giand.it">
      <meta http-equiv="content-type" content="text/html; charset=UTF-8">
      <p>Hi,</p>
      <p>I'm going to complete the slackbuild of a new package. It's an
        alternative implementation of the fftw package released with the
        official Slackware that includes as extension the support to
        Open MPI.</p>
      <p>The slackbuild and the installation work fine (tested with a
        new package that require it as dependency), but sbopkglint test
        returns this failure:</p>
      <p><span style="font-family:monospace"><span
            style="color:#000000;background-color:#ffffff;">Running
            test: 60-usr_info... </span><br>
          <span
style="font-weight:bold;color:#ff5454;background-color:#ffffff;">---</span><span
            style="color:#000000;background-color:#ffffff;"> package has
            info files, but doinst.sh does not call install-info</span></span></p>
      <p><span style="font-family:monospace"><span
            style="color:#000000;background-color:#ffffff;">in the
            doinst.sh template nothing referring to install-info
            appears. I looked in some slackbuilds discharged from SBo to
            find a sample but they are affect by the same issue. How can
            I solve?</span></span></p>
      <p><span style="font-family:monospace"><span
            style="color:#000000;background-color:#ffffff;">thanks<br>
          </span></span></p>
    </blockquote>
    <p>Solved</p>
    <p>I found a sample in the cgdb package (thanks to Dave Woodfall)</p>
    <p>doinst.sh must include this:</p>
    <pre>if [ -x /usr/bin/install-info -a -d usr/info ]; then
  ( cd usr/info
    rm -f dir
    for i in *.info*; do /usr/bin/install-info $i dir 2>/dev/null; done
  )
fi

(I think it should be included in the template of doinst.sh)
</pre>
    <p></p>
    <p><br>
    </p>
    <pre class="moz-signature" cols="72">-- 
*********************************************************
Giancarlo Dessì
<a class="moz-txt-link-freetext" href="https://www.giand.it">https://www.giand.it</a>
<a class="moz-txt-link-freetext" href="https://github.com/giandex">https://github.com/giandex</a>

Slackware Linux... because it works!
********************************************************* </pre>
  </body>
</html>