improve README
This commit is contained in:
parent
112a3b83d3
commit
4929424d2a
1 changed files with 38 additions and 0 deletions
38
README.md
Normal file
38
README.md
Normal file
|
@ -0,0 +1,38 @@
|
|||
# Raven
|
||||
|
||||
Raven is a simple user interface library.
|
||||
|
||||
# Dependencies
|
||||
|
||||
- meson *(make)*
|
||||
- ninja *(make)* *(for meson)*
|
||||
- cairo
|
||||
- cairomm
|
||||
- pango
|
||||
- pangocairo
|
||||
- xlib
|
||||
|
||||
# Installing
|
||||
|
||||
If you wish install libraven on your GNU/Linux system, run the script in `pkg/install.sh`. Before running the script, please read its contents to make sure its actions are compatible with your system setup.
|
||||
|
||||
If you use Arch Linux or a derivative, you can use the package inside of `pkg/makepkg`:
|
||||
|
||||
```
|
||||
$ cd pkg/makepkg
|
||||
$ makepkg -si
|
||||
```
|
||||
|
||||
Please note that the Arch Linux package will build Raven from the remote git repository, not your local source tree.
|
||||
|
||||
# Hacking
|
||||
|
||||
If you wish to develop Raven or look at the test program, set up a Meson build directory and compile Raven:
|
||||
|
||||
```
|
||||
$ meson builddir
|
||||
$ cd builddir
|
||||
$ meson compile
|
||||
```
|
||||
|
||||
You should see `ravenapp` (the test program) and `libraven.so` (the Raven library) in the build directory.
|
Loading…
Reference in a new issue