I've run into this situation three times recently, prompting me to wonder if there is a general approach to handling this. However, advice on the particular examples below would also be appreciated.
I wanted to install the upstream (development version) of the game "Supertux." I found the download page, but it doesn't give a .deb package.
Likewise, the download page for the racing game "Supertuxkart" gives an archive file, but no .deb package.
More recently, I wanted to install the 2.80 beta of Blender. The download file is an archive file, not a .deb package.
All of these packages are available (in an earlier version) from the default package sources, so can be installed with just apt install <packagename>
. They just won't be the upstream, development versions.
I want to install them so they are available for all users of the family computer, not just me. I want to have the desktop launcher files in the usual places (so they show up in the "applications search" from the GUI) and the binaries able to be launched from the usual PATH lookup. Ideally, I would like to have the package versions recorded wherever apt usually stores that information (so that any "apt" commands will show the versions installed).
I know I could do all of this if I had .deb files for the newer versions of these packages.
Is there a usual way to install newer versions of standard packages than the versions available from the default apt sources? If not, what are some typical ways the results above can be accomplished? (Or at least how to install the three packages listed above?)
(I know that software maintainers must fulfill certain requirements to be included in the default apt sources, so it seems possible that there might be some requirement about making newer versions available in some standard way.)
I'm using 18.04 if that makes a difference.
sudo apt upgrade
would install that newer version. Is that not the case? – Wildcard May 06 '19 at 01:10