You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Ubuntu 19.04 (no Snap) dependencies: libjavascriptcoregtk-4.0-dev libpsl-dev libsoup2.4-dev libwebkit2gtk-4.0-dev gir1.2-json-1.0 libjson-glib-dev
For compilation I needed to install meson and ninja-build, gcc ≠ 5.5.0
Also I had to have itstool and valac binaries in $PATH
Compilation:
mkdir build; cd build
cmake ..
meson
sudo ninja install
Something gone wrong: all compiled but I needed to copy: sudo cp /opt/git/zevdocs/build/devhelp/libdevhelp-3.* /usr/lib/
And after I launched zevdocs I got Waiting for zealcore... recursive message in terminal
The text was updated successfully, but these errors were encountered:
Additionaly after unpacking zealcore to /opt/go/src/zealcore (GOPATH must contain /opt/go)
I needed to change line 22 in zealcore.go file from "github.com/zealdocs/zealcore/zealindex" to "github.com/jkozera/zealcore/zealindex"
To run zealcore I had to install dep first then run cd /opt/go/src/zealcore; dep ensure in terminal
Last things I needed to do:
Rename /opt/bin/zevdocs to /opt/bin/zevdocs.real : sudo mv /opt/bin/zevdocs /opt/bin/zevdocs.real
Create file /opt/bin/zevdocs what contains:
#!/bin/bash
go run /opt/go/src/zealcore/zealcore.go
zevdocs.real
Run command in terminal: chmod u+x /opt/bin/zevdocs
Ubuntu 19.04 (no Snap) dependencies:
libjavascriptcoregtk-4.0-dev libpsl-dev libsoup2.4-dev libwebkit2gtk-4.0-dev gir1.2-json-1.0 libjson-glib-dev
For compilation I needed to install
meson
andninja-build
,gcc
≠ 5.5.0Also I had to have
itstool
andvalac
binaries in $PATHCompilation:
Something gone wrong: all compiled but I needed to copy:
sudo cp /opt/git/zevdocs/build/devhelp/libdevhelp-3.* /usr/lib/
And after I launched zevdocs I got Waiting for zealcore... recursive message in terminal
The text was updated successfully, but these errors were encountered: