JezerM / nody-greeter

LightDM greeter that allows to create wonderful themes with web technologies. Made in Node.js
https://web-greeter-page.vercel.app
GNU General Public License v3.0
134 stars 9 forks source link

Weird dependencies on .deb installer #51

Open pedro-ricardo opened 5 months ago

pedro-ricardo commented 5 months ago

Environment

Description of feature

The Ubuntu install package (.deb) seems to have some unneeded dependencies that make the installation larger than it needs.

The install of the whole gcc and g++ compilers seems off. The package should need only the libraries like libstdc++ for example and not the whole compiler. This should make the installation way faster and lighter.

Possible solutions

It could be done the dumb way :smile:

JezerM commented 3 months ago

Hmm, the issue is that the libc6 dependency, which contains all required C shared libraries, depends on libgcc-s1 which also depends on gcc-14-base. I couldn't find a Ubuntu package that serves the same purpose as libc6 without installing GCC or LLVM.