contrib/keepassxc/Pkgfile

23 lines
754 B
Plaintext

# Description: KeePass Cross-Platform Community Edition
# URL: https://keepassxc.org/
# Maintainer: Tim Biermann, tbier at posteo dot de
# Depends on: argon2 libgcrypt libsodium qrencode qt5 yubikey-personalization
name=keepassxc
version=2.6.0
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 \
-DCMAKE_INSTALL_PREFIX=/usr \
-DCMAKE_BUILD_TYPE=Release \
-DWITH_XC_ALL=ON \
-DWITH_XC_DOCS=OFF
cmake --build build
DESTDIR=$PKG cmake --install build
rm -r $PKG/usr/share/keepassxc/translations
}