Christoph Reiter a2ee04bf00 More CPEs
2024-03-24 20:09:34 +01:00

24 lines
677 B
Bash

# Maintainer: micbou <contact@micbou.com>
pkgname='pass'
pkgver=1.7.4
pkgrel=1
pkgdesc='Stores, retrieves, generates, and synchronizes passwords securely'
arch=('any')
url='https://www.passwordstore.org'
msys2_references=(
"cpe: cpe:/a:zx2c4:password-store"
)
license=('GPL2')
depends=('bash' 'gnupg' 'tree')
makedepends=('libqrencode-devel')
optdepends=('git: Git support'
'libqrencode: QR Code support')
source=(https://git.zx2c4.com/password-store/snapshot/password-store-${pkgver}.tar.xz)
sha256sums=('cfa9faf659f2ed6b38e7a7c3fb43e177d00edbacc6265e6e32215ff40e3793c0')
package() {
cd "${srcdir}/password-store-$pkgver/"
make DESTDIR=${pkgdir} install
}