@Sebastian Wilzbach Sebastian Wilzbach authored on 26 Mar 2018
.github use xml comments in issue template 7 years ago
bin dub will be build into the bin directory, so that when the dub executable's location is added to the path, the build.cmd / build.sh is not made globally accesible. 12 years ago
examples Add SDL based example project. 9 years ago
scripts Merge pull request #1342 from wilzbach/man 7 years ago
source update version to v1.8.0 7 years ago
test Use bash instead of sh in test 7 years ago
.codecov.yml Allows set CodeCov notifications to green/passing 7 years ago
.editorconfig add .editorconfig 10 years ago
.gitignore Add automatic GH deployment for Linux 32/64 and OSX 64 7 years ago
.travis.yml [auto-deploy] search for 32-bit DMD executable 7 years ago
ARCHITECTURE.md some basic information on the architecture 7 years ago
CHANGELOG.md update version and changelog to v1.8.0-beta.1 7 years ago
Jenkinsfile load ci repo as shared jenkins library 7 years ago
LICENSE Add a MIT License file that can be detected by GitHub 7 years ago
README.md spelling fixes 7 years ago
appveyor.yml Change LDC Windows binary URLs 7 years ago
architecture.graphmlz some basic information on the architecture 7 years ago
architecture.png some basic information on the architecture 7 years ago
build-files.txt Move utility functions from dub.compilers.compiler to dub.compilers.utils. 9 years ago
build-gdc.sh Add support for DragonFlyBSD 7 years ago
build.cmd The default compiler should not depend on DUB's own build environment 9 years ago
build.sh Fix #555, tweak sed pattern in build.sh so that it properly checks the 7 years ago
curl.lib Added files necessary to build on Windows. 12 years ago
dub.sdl Skip explicitly linking with libcurl. 7 years ago
dub.selections.json Bump vibe-d to 0.8.3-alpha.3 7 years ago
release.sh Add automatic GH deployment for Linux 32/64 and OSX 64 7 years ago
travis-ci.sh Merge remote-tracking branch 'upstream/stable' into merge_stable 7 years ago
README.md

dub package manager

Package and build manager for D applications and libraries.

There is a central package registry located at http://code.dlang.org.

GitHub tag Build Status Coverage Status

Introduction

DUB emerged as a more general replacement for vibe.d's package manager. It does not imply a dependency to vibe.d for packages and was extended to not only directly build projects, but also to generate project files (currently VisualD). Mono-D also supports the use of dub.json (dub's package description) as the project file.

The project's philosophy is to keep things as simple as possible. All that is needed to make a project a dub package is to write a short dub.json file and put the source code into a source subfolder. It can then be registered on the public package registry to be made available for everyone. Any dependencies specified in dub.json are automatically downloaded and made available to the project during the build process.

Key features

  • Simple package and build description not getting in your way
  • Integrated with Git, avoiding maintenance tasks such as incrementing version numbers or uploading new project releases
  • Generates VisualD project/solution files, integrated into MonoD
  • Support for DMD, GDC and LDC (common DMD flags are translated automatically)
  • Supports development workflows by optionally using local directories as a package source

Future direction

To make things as flexible as they need to be for certain projects, it is planned to gradually add more options to the package file format and eventually to add the possibility to specify an external build tool along with the path of it's output files. The idea is that DUB provides a convenient build management that suffices for 99% of projects, but is also usable as a bare package manager that doesn't get in your way if needed.

Installation

DUB comes precompiled for Windows, OS X and Linux. It needs to have libcurl with SSL support installed (except on Windows).

The dub executable then just needs to be accessible from PATH and can be invoked from the root folder of any DUB enabled project to build and run it.

If you want to build for yourself, just install DMD and libcurl development headers and run ./build.sh. On Windows you can simply run build.cmd without installing anything besides DMD.

Arch Linux

Михаил Страшун (Dicebot) maintains a dub package of the latest release in Community, for x86_64 and i686. Moritz Maxeiner has created a PKGBUILD file for GIT master: https://aur.archlinux.org/packages/dub-git/

Debian/Ubuntu Linux

Jordi Sayol maintains a DEB package as part of his D APT repository. Run sudo apt-get install dub to install.

OS X

Chris Molozian has added DUB to Homebrew. Use brew install dub to install the stable version, optionally adding --HEAD/--devel to install the latest git master or development release respectively.

There is also a MacPorts package available. Type sudo port install dub to install the latest stable version.

Windows

Daniel Jost maintains a dub package on chocolatey. Use cinst dub or cinst dub -version #.#.# to install stable or a custom version respectively.

Using DUB as a library

The DUB package of DUB can be used as a library to load or manipulate packages, or to resemble any functionality of the command line tool. The former task can be achieved by using the Package class. For examples on how to replicate the command line functionality, see commandline.d.