mirror of
https://github.com/dogecoin/dogecoin.git
synced 2026-01-31 10:30:52 +00:00
18 lines
415 B
Markdown
18 lines
415 B
Markdown
Arch Linux build guide
|
|
----------------------
|
|
|
|
**Last tested with:** 1.14.6-dev (as of 22884709)
|
|
**Test date:** 2022/07/15
|
|
|
|
This example lists the steps necessary to setup and build a command line only
|
|
dogecoind on archlinux:
|
|
|
|
```sh
|
|
pacman -S git base-devel boost libevent python db
|
|
git clone https://github.com/dogecoin/dogecoin.git
|
|
cd dogecoin/
|
|
./autogen.sh
|
|
./configure --without-gui --without-miniupnpc
|
|
make
|
|
```
|