Wikipedia says
An installation program or installer is a computer program that installs files, such as applications, drivers, or other software, onto a computer.
Some installers are specifically made to install the files they contain; other installers are general-purpose and work by reading the contents of the software package to be installed.
- Is an installer always used for binary installation and not doing any compilation work for source installation?
- Does Linux have the concept "installer" for package installation?
Wikipedia distinguishes between "installer" and "Package management
system". In Ubuntu, it seems to me all binary installation is done
by Package management systems
dpkg
orapt
- so where is an "installer"?
cp
ormkdir
flavor and some installers use it, but by itself it's useless for your purpose. – Cristian Ciupitu Jul 09 '14 at 22:08coreutils.spec
which is used to build the coreutils RPM and see for yourself how install might be used. – Cristian Ciupitu Jul 09 '14 at 23:36