Skip to content

Commit c94628f

Browse files
committed
Update build instructions for cmake.
1 parent 4444d3b commit c94628f

File tree

1 file changed

+22
-6
lines changed

1 file changed

+22
-6
lines changed

README.md

+22-6
Original file line numberDiff line numberDiff line change
@@ -107,26 +107,40 @@ For more details see the **User Guide** in the [**doc** directory](https://githu
107107

108108
### Linux - Using git clone (recommended) ###
109109

110-
You will probably need to install one of these packages first:
110+
***Note that this has changed for version 1.6. There are now a couple extra steps.***
111+
112+
A standard operating system install will probably include these already:
113+
114+
- git
115+
- gcc or clang compiler
116+
- make
117+
118+
You will probably need to install additional packages:
111119

112120
On Debian / Ubuntu / Raspbian:
113121

122+
sudo apt-get install cmake
114123
sudo apt-get install libasound2-dev
124+
sudo apt-get install libudev-dev
115125

116126
Or on Red Hat / Fedora / Centos:
117127

128+
sudo yum install cmake
118129
sudo yum install alsa-lib-devel
130+
sudo yum install libudev-devel
119131

120132
Then on any flavor of Linux:
121133

122134
cd ~
123135
git clone https://www.github.com/wb2osz/direwolf
124136
cd direwolf
125-
make
137+
mkdir build && cd build
138+
cmake ..
139+
make –j4
126140
sudo make install
127141
make install-conf
128142

129-
This should give you the most recent stable release. If you want the latest (possibly unstable) development version, use "git checkout dev" before the first "make" command.
143+
This should give you the most recent stable release. If you want the latest (possibly unstable) development version, use "git checkout dev" after the "cd direwolf" command.
130144

131145
For more details see the **User Guide** in the [**doc** directory](https://github.com/wb2osz/direwolf/tree/master/doc). Special considerations for the Raspberry Pi are found in **Raspberry-Pi-APRS.pdf**
132146

@@ -136,7 +150,7 @@ For more details see the **User Guide** in the [**doc** directory](https://githu
136150
Results will vary depending on your hardware platform and operating system version because it depends on various volunteers who perform the packaging.
137151

138152
sudo apt-get update
139-
apt-cache showpkg direwolf
153+
apt-cache showpkg direwolf
140154
sudo apt-get install direwolf
141155

142156

@@ -145,15 +159,17 @@ Results will vary depending on your hardware platform and operating system versi
145159
Results will vary depending on your hardware platform and operating system version because it depends on various volunteers who perform the packaging.
146160

147161
sudo yum check-update
148-
sudo yum list direwolf
162+
sudo yum list direwolf
149163
sudo yum install direwolf
150164

151165
### Linux - Download source in tar or zip file ###
152166

153167
Go to the [releases page](https://github.com/wb2osz/direwolf/releases). Chose desired release and download the source as zip or compressed tar file. Unpack the files, with "unzip" or "tar xfz," and then:
154168

155169
cd direwolf-*
156-
make
170+
mkdir build && cd build
171+
cmake ..
172+
make –j4
157173
sudo make install
158174
make install-conf
159175

0 commit comments

Comments
 (0)