blob: a5bc6895853f48b41f8948f92925f7ba8f00860d (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
|
# Maintainer: Carson Rueter <roachh@protonmail.com>
_pkgname='passmanpp'
pkgname='passman++'
pkgdesc='Incredibly simple and secure command-line password manager'
url="https://github.com/binex-dsk/$_pkgname/"
license=('GPL')
pkgver=2.0.0
pkgrel=1
source=("https://github.com/binex-dsk/$_pkgname/archive/$pkgver.tar.gz")
md5sums=('22667201a3028a13d1e80dcca72b2547')
provides=('passman')
conflicts=('passman-git' 'passman++-devel' 'passman++-lts')
depends=('botan' 'libsodium' 'qt6-base')
optdepends=('gnome-themes-extra: may be necessary for icons to work'
'breeze: recommended theme to use for passman++')
arch=('x86_64')
build() {
cd "$srcdir/$_pkgname-$pkgver"
./build.sh
}
package() {
cd "$srcdir/$_pkgname-$pkgver"
install -Dm755 passman $pkgdir/usr/bin/passman
}
|