dogecoin/doc/build-archlinux.md
2022-07-15 22:38:49 +02:00

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
```