Skip to content

Commit

Permalink
KeePassXC: use distro version for bookworm and any unrecognized version
Browse files Browse the repository at this point in the history
work towards #2401

long term we still need to update keepassxc for buster/bullseye #2160 . Potentially may be able to use near equivalent from the ubuntu PPA for these debian releases
  • Loading branch information
theofficialgman committed Jul 29, 2023
1 parent 77f25ec commit 33bf238
Show file tree
Hide file tree
Showing 2 changed files with 18 additions and 8 deletions.
13 changes: 9 additions & 4 deletions apps/KeePassXC/install-32
Original file line number Diff line number Diff line change
@@ -1,15 +1,20 @@
#!/bin/bash

case $(get_codename) in
bionic|focal|jammy|kinetic)
apt_lock_wait
sudo add-apt-repository ppa:phoerious/keepassxc -y
bionic|focal|jammy|kinetic|lunar)
ubuntu_ppa_installer "phoerious/keepassxc"
install_packages keepassxc || exit 1
;;
bookworm|trixie|sid|mantic)
install_packages keepassxc || exit 1
;;
bullseye)
install_packages https://github.com/Pi-Apps-Coders/files/raw/main/keepassxc_2.6.6-1_armhf.deb || exit 1
;;
*)
buster)
install_packages https://github.com/ryanfortner/ryanfortner/releases/download/1002/keepassxc_2.6.6-5_armhf.deb || exit 1
;;
*)
install_packages keepassxc || exit 1
;;
esac
13 changes: 9 additions & 4 deletions apps/KeePassXC/install-64
Original file line number Diff line number Diff line change
@@ -1,15 +1,20 @@
#!/bin/bash

case $(get_codename) in
bionic|focal|jammy|kinetic)
apt_lock_wait
sudo add-apt-repository ppa:phoerious/keepassxc -y
bionic|focal|jammy|kinetic|lunar)
ubuntu_ppa_installer "phoerious/keepassxc"
install_packages keepassxc || exit 1
;;
bookworm|trixie|sid|mantic)
install_packages keepassxc || exit 1
;;
bullseye)
install_packages https://github.com/Pi-Apps-Coders/files/raw/main/keepassxc_2.6.6-1_arm64.deb || exit 1
;;
*)
buster)
install_packages https://github.com/ryanfortner/ryanfortner/releases/download/1002/keepassxc_2.6.6-5_arm64.deb || exit 1
;;
*)
install_packages keepassxc || exit 1
;;
esac

0 comments on commit 33bf238

Please sign in to comment.