20 lines
770 B
Bash
20 lines
770 B
Bash
# 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/
|
|
}
|