diff --git a/source/dub/package_.d b/source/dub/package_.d index 633fc49..4eac613 100644 --- a/source/dub/package_.d +++ b/source/dub/package_.d @@ -27,9 +27,19 @@ /// Indicates where a package has been or should be installed to. enum InstallLocation { + /// Packages installed with 'local' will be placed in the current folder + /// using the package name as destination. To uninstall just remove this + /// folder, but take care for your own files. local, + /// Packages with 'projectLocal' will be placed in a folder managed by + /// dub (i.e. inside the .dub subfolder). These can be uninstalled by + /// dub. projectLocal, + /// Packages with 'userWide' will be placed in a folder accessible by + /// all of the applications from the current user. userWide, + /// Packages installed with 'systemWide' will be placed in a shared folder, + /// which can be accessed by all users of the system. systemWide }