blob: fb368fdd50b6566d28e64cf66fc76c10d2d5c2a4 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
|
# Arch AUR (binary release)
AUR arch installer for the [saveoursecrets](https://saveoursecrets.com) secure password manager and wallet.
## Developer
```
rm -f saveoursecrets.tgz && makepkg --check -f
```
If that works you can install with:
```
makepkg -si
```
Verify the installation:
```
pacman -Ql saveoursecrets-bin
```
And then to uninstall:
```
sudo pacman -R saveoursecrets-bin
```
To publish, update `.SRCINFO`:
```
makepkg --printsrcinfo > .SRCINFO
```
And then commit your changes and run `./aur-push.sh`.
If ssh fails due to public key denied run: `ssh aur-sos` and enter the private key password and try again.
|