initial import

This commit is contained in:
2025-06-22 20:39:04 -05:00
commit f8a70886f0
3428 changed files with 302546 additions and 0 deletions

19
pass-otp/PKGBUILD Normal file
View File

@@ -0,0 +1,19 @@
# Maintainer: Jesus E. <heckyel@riseup.net>
# Contibutor (Arch): Alexandre Pujol <alexandre@pujol.io>
pkgname=pass-otp
pkgver=1.2.0
pkgrel=4
pkgdesc="A password-store extension for managing one-time-password (OTP) tokens"
arch=('i686' 'x86_64')
url='https://github.com/tadfisher/pass-otp'
license=('GPL-3')
depends=('password-store' 'oath-toolkit' 'qrencode')
source=("${pkgname}-${pkgver}.tar.gz::https://github.com/tadfisher/pass-otp/archive/v${pkgver}.tar.gz")
sha512sums=('3d1417462998750ef1580169ed0e4b721b5f430cd86a678d1b6bc7b2ac123879902f7d22c28dc21e8a171ec80dfc51b6465d0dcc78cb009eb731651f2cb152f5')
package() {
cd "${pkgname}-${pkgver}"
make DESTDIR="${pkgdir}" install
install -Dm644 LICENSE -t "$pkgdir"/usr/share/licenses/$pkgname/
}