Skip to content

Build edbrowse from source on Debian 12

David-Apps edited this page Sep 14, 2023 · 1 revision

Commands to type at the terminal begin "$ ". Do not type "$ ". This is only here to help distinguish between commands and comments.

Install packages

Before installing packages, it is a good idea to update the package list:

$ sudo apt update

Install the git version control system:

$ sudo apt install git -y

Install GNU Make:

$ sudo apt install make -y

Install the GCC compiler:

$ sudo apt install gcc -y

Install packages that edbrowse uses:

$ sudo apt install pkgconf -y

$ sudo apt install libcurl4-openssl-dev -y

$ sudo apt install libpcre2-dev -y

$ sudo apt install libreadline-dev -y

$ sudo apt install libssl-dev -y

$ sudo apt install unixodbc-dev -y

Build quickjs

Create a copy of the files in the quickjs repository:

$ git clone https://github.com/bellard/quickjs

Change to the quickjs subdirectory:

$ cd quickjs

Build quickjs:

$ make

Return to the parent directory:

$ cd ..

Build and install edbrowse

Create a copy of the files in the edbrowse repository:

$ git clone https://github.com/CMB/edbrowse

Change to the edbrowse subdirectory:

$ cd edbrowse

Build edbrowse:

$ make

Install edbrowse:

$ sudo make install

Return to the parent directory:

$ cd ..

Start edbrowse:

$ edbrowse

Update edbrowse

Update the package list:

$ sudo apt update

Upgrade installed packages:

$ sudo apt upgrade -y

Change to the quickjs subdirectory:

$ cd quickjs

Get the latest files from the quickjs repository:

$ git pull

If no files have changed, you need not build quickjs again.

If files have changed, build quickjs:

$ make

Return to the parent directory:

$ cd ..

Change to the edbrowse subdirectory:

$ cd edbrowse

Get the latest files from the edbrowse repository:

$ git pull

If no files have changed, you need not build and install edbrowse again.

If files have changed, build and install edbrowse:

$ make

$ sudo make install

Return to the parent directory:

$ cd ..

Start edbrowse:

$ edbrowse