mirror of
https://github.com/upa/mscp.git
synced 2026-02-18 20:34:59 +08:00
A new build target `build-srpm` builds mscp src.rpm inside a docker container. The src.rpm can be published at COPR.
18 lines
436 B
Markdown
18 lines
436 B
Markdown
|
|
## Build mscp as src.rpm for publishing at COPR
|
|
|
|
### How to build
|
|
|
|
```shell-session
|
|
cd mscp
|
|
mkdir build && cd build
|
|
|
|
cmake .. make build-srpm
|
|
```
|
|
|
|
`make build-srpm` builds mscp src.rpm inside a docker container.
|
|
|
|
After that, there is `mscp-0.1.3-1.el9.src.rpm` under the `build`
|
|
directory. The next step for publishing is to upload the src.rpm to
|
|
[coprs/upaaa/mscp](https://copr.fedorainfracloud.org/coprs/upaaa/mscp/build/6983569/).
|