Skip to content

Commit 8777754

Browse files
Merge pull request #171 from ColinMaudry/patch-1
In case serd is not found when ./configure
2 parents 9e8315b + d292f28 commit 8777754

1 file changed

Lines changed: 8 additions & 0 deletions

File tree

README.md

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -35,6 +35,14 @@ Then, run:
3535
./configure
3636
make -j2
3737

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+
```
3846
## Running
3947

4048
After building, these are the typical operations that you will perform:

0 commit comments

Comments
 (0)