# bpm **Repository Path**: osEDA/bpm ## Basic Information - **Project Name**: bpm - **Description**: Boost Package Manager - **Primary Language**: Unknown - **License**: Not specified - **Default Branch**: master - **Homepage**: None - **GVP Project**: No ## Statistics - **Stars**: 0 - **Forks**: 0 - **Created**: 2021-05-13 - **Last Updated**: 2021-05-13 ## Categories & Tags **Categories**: Uncategorized **Tags**: None ## README # bpm `bpm`, the Boost package manager, is an experimental utility for installing parts of Boost from modular "releases". To build it, this repository needs to be cloned into the `tools/bpm` subdirectory of the Boost superproject, then `b2 tools/bpm/build` will place `bpm` into `dist/bin`. To try it out, make an empty subdirectory and create a text file `bpm.conf` there with the following contents: ``` package_path=http://www.pdimov.com/tmp/pkg-develop-1612497/ ``` then to install, for example, the `filesystem` library along with its required dependencies, execute `bpm` from that directory with ``` bpm install filesystem ``` You can also run `bpm` without arguments, and it will display a description of the commands and options it takes. The "release" specified in `package_path` above has been prepared by running `tools/bpm/scripts/package.bat` at the root of the Boost source tree, revision `develop-1612497`.