summarylogtreecommitdiffstats
path: root/PKGBUILD
blob: 3e2ac2085277a7dc7889a6481385302f6b6112ba (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=('7ce90dad4e3cb34d94fad7cd274ce57f')
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
}