Installation - troyp/edbrowse GitHub Wiki

raspbian

From apt

sudo apt-get install edbrowse

From source

cmake:

sudo apt-get install cmake

xsltproc:

sudo apt-get install xsltproc

tidy-html5:

sudo apt-get install libtidy5 libtidy-dev

curl:

sudo apt-get install libcurl4-openssl-dev

libpcre:

sudo apt-get install libpcre3-dev

readline:

sudo apt-get install libreadline-dev

python modules:

sudo apt-get install python-yaml

duktape:

git clone https://github.com/svaarala/duktape.git
cd duktape
make dist
cd dist
make -f Makefile.sharedlibrary
sudo make -f Makefile.sharedlibrary install
make -f Makefile.cmdline
sudo ln -s $(pwd)/duk /usr/local/bin/duk

Make links to libraries in somewhere raspbian looks by default:

sudo ln -s /usr/local/lib/libduktape* /usr/lib/

edbrowse:

cd build
cmake ..
make
sudo make install