aboutsummaryrefslogtreecommitdiffstats
path: root/dist/archlinux/stable/PKGBUILD
blob: 955f08ae4bc3472d2ff4152435bf67ae9bbd00c1 (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.2
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=(6799c05d613259411f5bebaa12e5734b70c8bd248e30ae0a4f30c6c4fa561409)


build() {
  cd passcheck-$pkgver
  make
}

package() {
  cd passcheck-$pkgver
  make DESTDIR="$pkgdir" install
}