aboutsummaryrefslogtreecommitdiffstats
path: root/dist/archlinux/stable/PKGBUILD
blob: 9eeee3d9686ccc74336d26abb964d13354a9984b (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=('GPL3')
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
}