diff options
author | Tim Biermann <tbier@posteo.de> | 2020-08-20 08:20:59 +0000 |
---|---|---|
committer | Tim Biermann <tbier@posteo.de> | 2020-08-20 08:23:07 +0000 |
commit | 74519571f3c809140b24d3ea11d10f2e041b2715 (patch) | |
tree | 5044f3180178b85d65145c0f9f1034ec745b6b7d /keepassxc | |
parent | 27beecbc4603a9509a04c57befdc063d38235427 (diff) | |
download | contrib-74519571f3c809140b24d3ea11d10f2e041b2715.tar.gz contrib-74519571f3c809140b24d3ea11d10f2e041b2715.tar.xz |
keepassxc: 2.6.0 -> 2.6.1
Diffstat (limited to 'keepassxc')
-rw-r--r-- | keepassxc/.signature | 6 | ||||
-rw-r--r-- | keepassxc/Pkgfile | 10 |
2 files changed, 10 insertions, 6 deletions
diff --git a/keepassxc/.signature b/keepassxc/.signature index 3350ff0eb..adc510a69 100644 --- a/keepassxc/.signature +++ b/keepassxc/.signature @@ -1,5 +1,5 @@ untrusted comment: verify with /etc/ports/contrib.pub -RWSagIOpLGJF380tijtinxQUtteYoAx+TCGRMWf7npMY6OhkbSYK5c7xJgLgpQE4W8Dj3gXxxOxQu+zGYqKtewK8vM853ScFBw4= -SHA256 (Pkgfile) = da9c7ef0dc95e1cb477a5d0aedb470868f47e4d4d4df8967fba1af2a5d26eb1b +RWSagIOpLGJF314fk8YEifhVBlE2fQf7oMgPsIODfxk34kSfbA4ajzSzlRhYVPJR3fjczgX4a7YZfH67dxUWlLFe6dcB5daE0Qg= +SHA256 (Pkgfile) = 32cca70194b46c8ce4d0b940f745259d920b6842898cb160ac61d19a136c183d SHA256 (.footprint) = 3518370ae52ecb1b0452d1aaa3b291be9b017eb1a4c8ac77c322ac88aa7fbdf1 -SHA256 (keepassxc-2.6.0-src.tar.xz) = d0d23d97a73ac1cbf59bfca2f5d1506ae36dfcd4fbfb4225efe19931f035fd3a +SHA256 (keepassxc-2.6.1-src.tar.xz) = b466759947fcd71a59b8d498a1f154cb7b85b4f2a0a417c92a75845d8bac8cc8 diff --git a/keepassxc/Pkgfile b/keepassxc/Pkgfile index 999737a50..ecc2b5c6d 100644 --- a/keepassxc/Pkgfile +++ b/keepassxc/Pkgfile @@ -2,19 +2,23 @@ # URL: https://keepassxc.org/ # Maintainer: Tim Biermann, tbier at posteo dot de # Depends on: argon2 libgcrypt libsodium qrencode qt5 yubikey-personalization +# Optionak: quazip5 name=keepassxc -version=2.6.0 +version=2.6.1 release=1 source=(https://github.com/keepassxreboot/keepassxc/releases/download/$version/$name-$version-src.tar.xz) build() { [[ -e /usr/lib/ccache ]] && PATH="$(echo ${PATH} | awk -v RS=: -v ORS=: '/ccache/ {next} {print}' | sed 's/:*$//')" - cmake -S$name-$version -Bbuild -GNinja \ + [[ -e /usr/lib/ccache ]] && PKGMK_KEEPASSXC=' -DWITH_CCACHE=ON' + cmake -S$name-$version -Bbuild -GNinja $PKGMK_KEEPASSXC \ -DCMAKE_INSTALL_PREFIX=/usr \ + -DCMAKE_INSTALL_LIBDIR=lib \ -DCMAKE_BUILD_TYPE=Release \ -DWITH_XC_ALL=ON \ - -DWITH_XC_DOCS=OFF + -DWITH_XC_DOCS=OFF \ + -DWITH_TESTS=OFF cmake --build build DESTDIR=$PKG cmake --install build |