|
|
|
|
|
by ksk
2938 days ago
|
|
For simple apps that makes sense. But then you have apps that require kernel drivers. Or the app itself is a shared library. Or multiple users on the same system use the app, etc. >Turns out you don't need a package manager unless you intend to over-engineer application management to the insane level that the open source community has. You don't necessarily need a package manager, but you can't solve the problem with simple folders either. |
|
A.k.a drivers. The app is just a control panel. MacOS classic used "extensions" for this, which were basically just app folders you put in a specially designated folder.
So the modern version of that could just be dropping a folder into a special location there kernel knows to search for drivers, and include a control panel app.
> Or the app itself is a shared library.
A.k.a not an app at all. Shared libraries only really make sense as part of a stable base system that developers can target and depend on, otherwise you get DLL hell and require something like a package manager and all its associated limitations for basically no benefit at all.
If your application uses a library and you don't want to compile it statically, just include a copy in the app folder, secure in the knowledge that it will never cause a conflict or break your application due to an update or some other application replacing it.
> Or multiple users on the same system use the app, etc.
Desktops, a.k.a "Personal Computers", don't really have much of a multi-user use case. They did briefly in the time after the internet became a big deal but before smart phones were invented, but that time is over. Know what we did on Windows 98? We just shared the system, it wasn't a big deal.
Even so, it's not like you need two copies of the application to have two different configurations.
None of this is anywhere near as complicated as the people who promote it like to pretend it is.