blob: 68894c3685c673051d53f4f3c4ffe1dc143a16be (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
# Compile pkgit
Enter the project directory, and follow one of the following procedures.
## Using Muon
```
muon setup build
muon build build
```
## Using Meson
```
meson setup build
ninja -C build
```
Both methods will put the executable for pkgit into the `build` directory.
|