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
rofi-pass/PKGBUILD Normal file
View File

@@ -0,0 +1,19 @@
# Maintainer: Jesus E. <heckyel@riseup.net>
pkgname=rofi-pass
pkgver=2.0.2
pkgrel=5
pkgdesc="Shellscript to handle storages from password-store in a convenient way"
arch=('i686' 'x86_64')
url='https://github.com/carnager/rofi-pass'
license=('GPL-3')
depends=('xdg-utils' 'rofi' 'gawk' 'password-store' 'pwgen' 'xdotool' 'xclip')
optdepends=('pass-otp: for OTP support')
source=("${pkgname}-${pkgver}.tar.gz::https://github.com/carnager/${pkgname}/archive/${pkgver}.tar.gz")
sha512sums=('28f59696911089c31b3f17bde281e3d79c3f757ecc4da61386719c6cff9b31c0944a2ac549d7838f06c249d4535c0dc107ba684115f15db42a24bfdb2f575437')
package() {
cd $pkgname-$pkgver
make DESTDIR="$pkgdir" PREFIX="/usr" install
install -Dm644 LICENSE -t "$pkgdir"/usr/share/licenses/$pkgname/
}