# Maintainer: NeoTheFox pkgname=git-credential-keepassxc pkgver=0.14.0 pkgrel=1 pkgdesc="git-credential-keepassxc is a Git credential helper that allows Git (and shell scripts) to get/store logins from/to KeePassXC" url="https://github.com/Frederick888/git-credential-keepassxc" makedepends=('cargo') arch=('i686' 'x86_64') license=('GPL3') source=("https://github.com/Frederick888/$pkgname/archive/refs/tags/v$pkgver.tar.gz") sha256sums=('d1361d3d2d32b8ea9fbf42fb6f0fbaaf9532faf9ccb7252e3c7aaad7e202babb') build() { cd "$pkgname-$pkgver" cargo build --release --features all --locked --target-dir target } package() { cd "$pkgname-$pkgver" install -Dt "$pkgdir"/usr/bin target/release/git-credential-keepassxc }