<div dir="ltr"><div class="gmail_default" style="font-family:monospace,monospace;font-size:x-small">Giancarlo,</div><div class="gmail_default" style="font-family:monospace,monospace;font-size:x-small"><br></div><div class="gmail_default" style="font-family:monospace,monospace;font-size:x-small">you should also add a douninst.s file with the following to clean up after uninstall if you haven't already done so:</div><div class="gmail_default" style="font-family:monospace,monospace;font-size:x-small"><br></div><div class="gmail_default" style="font-family:monospace,monospace;font-size:x-small">if [ -x /usr/bin/install-info -a -d usr/info ]; then<br>(<br>cd usr/info<br>rm -f dir<br>for i in *.info*; do<br>/usr/bin/install-info $i dir &>/dev/null<br>done<br>)<br>fi</div><div class="gmail_default" style="font-family:monospace,monospace;font-size:x-small"><br></div><div class="gmail_default" style="font-family:monospace,monospace;font-size:x-small">Cheers</div><div class="gmail_default" style="font-family:monospace,monospace;font-size:x-small"><br></div><div class="gmail_default" style="font-family:monospace,monospace;font-size:x-small">Greg<br></div></div><br><div class="gmail_quote"><div dir="ltr" class="gmail_attr">On Sun, 7 Apr 2024 at 18:56, Giancarlo Dessì <<a href="mailto:slack@giand.it">slack@giand.it</a>> wrote:<br></div><blockquote class="gmail_quote" style="margin:0px 0px 0px 0.8ex;border-left:1px solid rgb(204,204,204);padding-left:1ex"><u></u>
<div>
<div>Il 07/04/24 19:24, Giancarlo Dessì ha
scritto:<br>
</div>
<blockquote type="cite">
<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:rgb(0,0,0);background-color:rgb(255,255,255)">Running
test: 60-usr_info... </span><br>
<span style="font-weight:bold;color:rgb(255,84,84);background-color:rgb(255,255,255)">---</span><span style="color:rgb(0,0,0);background-color:rgb(255,255,255)"> package has
info files, but doinst.sh does not call install-info</span></span></p>
<p><span style="font-family:monospace"><span style="color:rgb(0,0,0);background-color:rgb(255,255,255)">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:rgb(0,0,0);background-color:rgb(255,255,255)">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 cols="72">--
*********************************************************
Giancarlo Dessì
<a href="https://www.giand.it" target="_blank">https://www.giand.it</a>
<a href="https://github.com/giandex" target="_blank">https://github.com/giandex</a>
Slackware Linux... because it works!
********************************************************* </pre>
</div>
_______________________________________________<br>
SlackBuilds-users mailing list<br>
<a href="mailto:SlackBuilds-users@slackbuilds.org" target="_blank">SlackBuilds-users@slackbuilds.org</a><br>
<a href="https://lists.slackbuilds.org/mailman/listinfo/slackbuilds-users" rel="noreferrer" target="_blank">https://lists.slackbuilds.org/mailman/listinfo/slackbuilds-users</a><br>
Archives - <a href="https://lists.slackbuilds.org/pipermail/slackbuilds-users/" rel="noreferrer" target="_blank">https://lists.slackbuilds.org/pipermail/slackbuilds-users/</a><br>
FAQ - <a href="https://slackbuilds.org/faq/" rel="noreferrer" target="_blank">https://slackbuilds.org/faq/</a><br>
<br>
</blockquote></div>