Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/litehtml/litebrowser-linux
The simple browser based on litehtml engine (linux)
https://github.com/litehtml/litebrowser-linux
Last synced: 2 months ago
JSON representation
The simple browser based on litehtml engine (linux)
- Host: GitHub
- URL: https://github.com/litehtml/litebrowser-linux
- Owner: litehtml
- License: bsd-3-clause
- Created: 2014-08-28T10:45:34.000Z (over 10 years ago)
- Default Branch: master
- Last Pushed: 2024-03-31T10:09:37.000Z (9 months ago)
- Last Synced: 2024-03-31T15:45:53.571Z (9 months ago)
- Language: C++
- Size: 3.57 MB
- Stars: 75
- Watchers: 10
- Forks: 34
- Open Issues: 3
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# litebrowser-linux
A simple browser based on the [litehtml](https://github.com/litehtml/litehtml) engine for Linux and Mac. See [litebrowser](https://github.com/litehtml/litebrowser) for the Windows version.
## Pre-requisites on Linux
Install dependencies:
* vim-core for xxd
## Pre-requisites on Mac
Install dependencies using [Homebrew](https://brew.sh/):
* [gtkmm3](https://formulae.brew.sh/formula/gtkmm3)
* [gtk+3](https://formulae.brew.sh/formula/gtk+3)```
brew install gtkmm3 gtk+3
```## Common Build instructions
Clone this repository and build the `litebrowser` executable:
```
git clone --recursive https://github.com/litehtml/litebrowser-linux.git
cd litebrowser-linux
mkdir build
cd build
cmake ..
make
```