Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Disable auto-update if the AUR is used #98

Open
wants to merge 3 commits into
base: master
Choose a base branch
from
Open
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Update README and fix logging
Signed-off-by: Cian Ormond <co@cianormond.com>
wiggleforlife committed Apr 6, 2022
commit fd1bee05e873c1ce5ef5fb964467505cb67725c9
19 changes: 16 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
@@ -70,11 +70,24 @@ the future, see the [corresponding issue](https://github.com/marvk/vatprism/issu

#### Linux

Currently, there is no support for native linux binaries. It is still possible to run VATprism, though you are going to
If you are using Arch Linux or any derivatives, you can use the third-party [vatprism](https://aur.archlinux.org/packages/vatprism)
package on the AUR.

Using `yay` as your AUR helper...
```
yay -Sy vatprism
```

Using no AUR helper...
```
git clone https://aur.archlinux.org/vatprism.git && cd vatprism
makepkg -si
```
It is still possible to run VATprism on other distros, though you are going to
have to compile it yourself. For this, please refer to the [Build](#build) section of this readme.

If there is demand for Linux native binaries in the future, I will think about adding support. Feel free to
request [Linux](https://github.com/marvk/vatprism/issues/31) builds via the linked issue.
If there is demand for more Linux native binaries in the future, I will think about adding support. Feel free to
request different [Linux](https://github.com/marvk/vatprism/issues/31) builds via the linked issue.

## Build

Original file line number Diff line number Diff line change
@@ -171,6 +171,6 @@ private void checkInstallMethod(Preferences prefs) {
method = new File("/etc/vatprism/aur").exists() ? "aur" : "default";
}
prefs.stringProperty("meta.install_method").set(method);
log.info(method);
log.info("Install method - " + method);
}
}