diff options
author | Ryo Nakamura <upa@haeena.net> | 2024-02-04 10:58:11 +0900 |
---|---|---|
committer | Ryo Nakamura <upa@haeena.net> | 2024-02-04 10:58:11 +0900 |
commit | 306a00ced564829d0c265644b99ecaa0de32920b (patch) | |
tree | 988f7f7af7c8ec4ea30ddab15ce1b82393d6d572 /README.md | |
parent | 65025b9022102cf283af7577ab3b868982079322 (diff) |
build source rpm inside a container
A new build target `build-srpm` builds mscp src.rpm inside a docker
container. The src.rpm can be published at COPR.
Diffstat (limited to 'README.md')
-rw-r--r-- | README.md | 12 |
1 files changed, 4 insertions, 8 deletions
@@ -50,17 +50,13 @@ sudo add-apt-repository ppa:upaa/mscp sudo apt-get install mscp ``` -- Rocky 8.8 +- RHEL-based distributions ```console -yum install https://github.com/upa/mscp/releases/latest/download/mscp_rocky-8.8-x86_64.rpm +sudo dnf copr enable upaaa/mscp +sudo dnf install mscp ``` -- Alma 8.8 -```console -yum install https://github.com/upa/mscp/releases/latest/download/mscp_almalinux-8.8-x86_64.rpm -``` - -- Linux with single binary `mscp` (x86_64 only, and not optimal performance) +- Single binary `mscp` for x86_64 (not optimal performance) ```console wget https://github.com/upa/mscp/releases/latest/download/mscp.linux.x86.static -O /usr/local/bin/mscp chmod 755 /usr/local/bin/mscp |