Solution: Build Multiple Packages Using dh_install
Look at the solution for the “Build Multiple Packages Using dh_install” challenge.
We'll cover the following...
100 200 300 600
Project directory and code for building multiple packages using dh_install
Explanation
-
In the
Makefile, we use the install target to install thecalculate-averagebinary file and thescoresdata file in thedebian/<package-name>directory. -
We write the
debian/controlfile, which contains the source package name, multiple binary ...
Ask