4.3.3.5 The Install Builder

env.Install(destination, sources)
# Example
env.Install("${prefix}/bin", "app.exe")
env.Install("${prefix}/share", "share")

The Install builder can install files or directories to their installation target location. It functions almost identically to the Copy builder. The only difference relates to the clean and uninstall tasks. The clean task removes targets created by the Copy builder but not by the Install builder. The uninstall task removes targets created by the Install builder but not by the Copy builder.