How to make sbopkg respect changed version in slackbuild
by ennepath from LinuxQuestions.org on (#55CVZ)
Let's say I have a slackbuild with versions 2.1 of some software. The slackbuild doesn't compile this software, just downloads a binary and puts a few other files in filesystem. If I change slackbuild and info file in `/var/lib/sbopkg/SBo-git/software-group/software/` from 2.1 to 2.2
Code:sed -i 's/2\.1/2.2/g' /var/lib/sbopkg/SBo-git/software-group/software/*.{SlackBuild,info}and then I try to install this package with sbopkg
Code:sbopkg -i softwaresomehow sbo reverts version change in slackbuild and info file and download the older version. Please, explain what should I do to adapt slackbuild version for my needs? I know there is a way not to use sbopkg, but to install slackbuild manually, however, sometimes I need to make queues. Doing it manually is a pain. Thanks.


Code:sed -i 's/2\.1/2.2/g' /var/lib/sbopkg/SBo-git/software-group/software/*.{SlackBuild,info}and then I try to install this package with sbopkg
Code:sbopkg -i softwaresomehow sbo reverts version change in slackbuild and info file and download the older version. Please, explain what should I do to adapt slackbuild version for my needs? I know there is a way not to use sbopkg, but to install slackbuild manually, however, sometimes I need to make queues. Doing it manually is a pain. Thanks.