diff options
| author | allusive-dev <[email protected]> | 2023-11-17 12:31:16 +1100 |
|---|---|---|
| committer | allusive-dev <[email protected]> | 2023-11-17 12:31:16 +1100 |
| commit | 5774e9eb996d8692a98c8c377a717e9c7f4a341b (patch) | |
| tree | f4174b0bf41df944574f1a44281596fdc58a8cb3 | |
| parent | version number (diff) | |
| parent | Update README.md (diff) | |
| download | compfy-1.7.0.tar.xz compfy-1.7.0.zip | |
Merge branch 'main' of github.com:allusive-dev/compfy1.7.0
| -rw-r--r-- | README.md | 15 |
1 files changed, 15 insertions, 0 deletions
@@ -74,12 +74,22 @@ Can't find what you need in the wiki or have an problem? Open an Issue. ## Installation +Note if you want to enabled the `--check-for-update` option (avaliable as of `1.7.0`) you will need to build with these commands instead. +(`--check-for-update` will print out your current version and the latest release version number if you are connected to the internet) + ### Building Manually +Without `--check-for-update`: ``` $ meson setup . build $ ninja -C build $ ninja -C build install ``` +With `--check-for-update`: +``` +$ meson setup -Dupdate_checks=true . build +$ ninja -C build +$ ninja -C build install +``` Dependencies: @@ -100,6 +110,11 @@ gcc (make) git (make) meson (make) ninja (make) + +# If you enabled -Dupdate-checks you will also need these dependencies. + +'json-c' or 'json_c' +'curl' or 'libcurl' ``` ### Arch Linux or other Arch based distros |