zpack 0.1.11

A fast, configurable package manager which builds programs from source
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
# zpack

A fast, configurable module system that builds packages from source.

Build using Rust.

## Example Usage

Goal: install HPL with OpenMPI and OpenBLAS, all using GCC.

```sh
zpack install hpl %openblas %openmpi +fabrics=auto +lto %%gcc
```

Why? We want `HPL`. `HPL` requires a `BLAS` implementation, which is provided by
OpenBLAS. OpenMPI will act as the compiler for HPL and OpenBLAS, but requires a
base compiler of its own, for which we use GCC.