1
mirror of https://invent.kde.org/network/falkon.git synced 2024-09-21 17:52:10 +02:00

README: Minor edits and add info about custom prefix install

This commit is contained in:
David Rosca 2019-03-19 17:49:25 +01:00
parent 426225efcc
commit be9b7dda6e
No known key found for this signature in database
GPG Key ID: EBC3FC294452C6D8

View File

@ -1,18 +1,32 @@
# Falkon # Falkon
__Falkon__ is a KDE web browser & It is built on the QtWebEngine. Falkon is a KDE web browser. It uses QtWebEngine rendering engine.
![image](https://www.falkon.org/images/screenshot.png) ![image](https://www.falkon.org/images/screenshot.png)
## Downloads ## Downloads
To download Falkon [click here](https://www.falkon.org/download/). Falkon downloads are available from [homepage](https://www.falkon.org/download/).
## Building ## Building
```sh ```sh
$ mkdir build && cd build mkdir build && cd build
$ cmake .. cmake ..
$ make && make install make && make install
```
### Install to custom prefix
When installing Falkon to custom prefix, you may need to adjust `XDG_DATA_DIRS` environment variable.
```sh
# Build
cmake -DCMAKE_INSTALL_PREFIX=$HOME/falkon
# Run
export XDG_DATA_DIRS="$HOME/falkon/share:$XDG_DATA_DIRS"
$HOME/falkon/bin/falkon
``` ```
## Contributing ## Contributing