aboutsummaryrefslogtreecommitdiffstats
path: root/dist/archlinux/stable/PKGBUILD
blob: cf26d4cfdba0b1d043814c91e644741a0eb7e96a (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
pkgrel=1
pkgdesc='Passphrase strenght evaluater'
arch=('any')
url='https://github.com/maandree/passcheck'
license=('GPL3')
depends=('python3')
makedepends=('make' 'sed' 'coreutils' 'texinfo' 'gzip')
source=(https://github.com/maandree/passcheck/archive/$pkgver.tar.gz)
sha256sums=(8ed737dee3de23e3d8f3645c5c4822ac66cf990adb2528e771928becbdd90f99)


build() {
  cd passcheck-$pkgver
  make
}

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