Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
Duniter v2S
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Container Registry
Model registry
Monitor
Service Desk
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
nodes
rust
Duniter v2S
Merge requests
!292
Packaging rpm (
#260
)
Code
Review changes
Check out branch
Download
Patches
Plain diff
Merged
Packaging rpm (
#260
)
d0p1/duniter-v2s:packaging/rpm
into
master
Overview
1
Commits
4
Pipelines
10
Changes
4
Merged
d0p1
requested to merge
d0p1/duniter-v2s:packaging/rpm
into
master
5 months ago
Overview
1
Commits
4
Pipelines
10
Changes
4
Expand
1
0
1
Merge request reports
Compare
master
version 4
15284084
5 months ago
version 3
805f3f94
5 months ago
version 2
2bf5d2fe
5 months ago
version 1
e1e8f199
5 months ago
master (base)
and
latest version
latest version
174c23f7
4 commits,
4 months ago
version 4
15284084
4 commits,
5 months ago
version 3
805f3f94
3 commits,
5 months ago
version 2
2bf5d2fe
2 commits,
5 months ago
version 1
e1e8f199
1 commit,
5 months ago
4 files
+
53
−
0
Inline
Compare changes
Side-by-side
Inline
Show whitespace changes
Show one file at a time
Files
4
Search (e.g. *.vue) (Ctrl+P)
docs/packaging/build-rpm.md
0 → 100644
+
20
−
0
Options
# How to Build the Duniter RPM Package
1.
Install dependencies:
```
sh
# Fedora
sudo
dnf
install
clang cmake protobuf-compiler openssl-devel
```
2.
Compile the project:
```
sh
cargo build
--release
```
3.
Install
`cargo-generate-rpm`
:
```
sh
cargo
install
cargo-generate-rpm
```
4.
Build the package:
```
sh
cargo generate-rpm
-p
node
```
5.
The
`.rpm`
package will be located in the
`target/generate-rpm`
folder.
Loading