We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 9e8315b + d292f28 commit 8777754Copy full SHA for 8777754
1 file changed
README.md
@@ -35,6 +35,14 @@ Then, run:
35
./configure
36
make -j2
37
38
+If you get the error `No package 'serd-0' found` with `./configure`, you must install Serd manually (the last command may require `sudo`):
39
+
40
+```shell
41
+wget https://github.com/drobilla/serd/archive/v0.28.0.tar.gz &&\
42
+tar -xvzf *.tar.gz && rm *.tar.gz && cd serd-* &&\
43
+./waf configure && ./waf &&\
44
+./waf install
45
+```
46
## Running
47
48
After building, these are the typical operations that you will perform:
0 commit comments