dogecoin/contrib/snap/README.md

24 lines
559 B
Markdown
Raw Normal View History

2021-05-28 22:27:25 +02:00
All the commands I used for building and pushing to Snapcraft. I've only tested the amd64 .snap package, but anyone on amd64, arm64, or i686 should be able to build and/or install it for themselves with these instructions.
---
## Building Locally
2021-08-21 04:59:06 +02:00
```
2021-05-28 22:27:25 +02:00
sudo apt install snapd
sudo snap install --classic snapcraft
snapcraft
2021-08-21 04:59:06 +02:00
```
2021-05-28 22:27:25 +02:00
### To Install Locally
2021-08-21 04:59:06 +02:00
```
2021-05-28 22:27:25 +02:00
snap install \*.snap --devmode
2021-08-21 04:59:06 +02:00
```
2021-05-28 22:27:25 +02:00
### To Push to Snapcraft
2021-08-21 04:59:06 +02:00
```
2021-05-28 22:27:25 +02:00
snapcraft login
snapcraft register dogecoin-core
snapcraft push \*.snap --release=edge
sudo snap install dogecoin-core --channel=edge
2021-08-21 04:59:06 +02:00
```