blob: 70be197099441b712774fbe0795681821a1d41c7 (
plain) (
blame)
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
|
# Maintainer: Mattias Andrée <`base64 -d`(bWFhbmRyZWUK)@member.fsf.org>
pkgname=passcheck
pkgver=1.1
pkgrel=1
pkgdesc='Passphrase strength evaluater'
arch=('any')
url='https://github.com/maandree/passcheck'
license=('AGPL3')
depends=('python3')
makedepends=('make' 'sed' 'coreutils' 'texinfo' 'gzip' 'auto-auto-complete')
source=(https://github.com/maandree/passcheck/archive/$pkgver.tar.gz)
sha256sums=(6940e1c7b601001debec300784c2387ec016e2da6a45730942e893a6714e8656)
build() {
cd passcheck-$pkgver
make
}
package() {
cd passcheck-$pkgver
make DESTDIR="$pkgdir" install
}
|