builddep
Builddep, short for build dependency, refers to a package or component that is required to build a software project from source. Build dependencies are distinct from runtime dependencies in that they are typically not needed once the software is installed and used, but are necessary during the compilation and packaging process. Common examples include compilers, build tools, libraries with development headers, and code generators.
In different packaging ecosystems, build-time requirements are declared in metadata and identified by different labels. Debian
Installing build dependencies also varies by distribution. Debian-based systems provide apt-get build-dep <package> to fetch the
Practical considerations include the fact that build dependencies may come from multiple sources, may be optional
See also: Build system, Build-Depends, BuildRequires, makedepends, dependency management.