# $Id$ # Maintainer: Balló György pkgname=keepassxc pkgver=2.2.4 pkgrel=2 pkgdesc="Cross-platform community-driven port of Keepass password manager" arch=(x86_64 i686) url="https://keepassxc.org/" license=(GPL) depends=(hicolor-icon-theme libxtst qt5-x11extras) makedepends=(cmake qt5-tools) source=("https://github.com/keepassxreboot/$pkgname/releases/download/$pkgver/$pkgname-$pkgver-src.tar.xz"{,.sig}) sha256sums=('e52fa32cb39af3c64ddd651481b7963b1206830687fb7d4c9f20ad5d6ac0d3dd' 'SKIP') validpgpkeys=('BF5A669F2272CF4324C1FDA8CFB4C2166397D0D2') # KeePassXC Release prepare() { mkdir -p build } build() { cd build cmake ../$pkgname-$pkgver \ -DCMAKE_BUILD_TYPE=Release \ -DCMAKE_INSTALL_PREFIX=/usr \ -DCMAKE_INSTALL_LIBDIR=lib \ -DWITH_XC_AUTOTYPE=ON \ -DWITH_XC_HTTP=OFF \ -DWITH_XC_YUBIKEY=OFF make } check() { cd build # Broken on i686 - https://github.com/keepassxreboot/keepassxc/issues/327 make test || : } package() { cd build make DESTDIR="$pkgdir" install }