summarylogtreecommitdiffstats
path: root/PKGBUILD
blob: e500f802a39898cf6f1a336d2a115af1ebaf8feb (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
# Maintainer: Christopher Fair  <christopherpfair@comcast.net>
pkgname=checkpwn
pkgver=1.1.0
pkgrel=5
pkgdesc="Checks whether the account or the password is on the list of compromised accounts."
arch=('i686' 'x86_64')
url="https://github.com/chrisfair/checkpwn/"
license=('MIT')
depends=('git' 'openssl')
makedepends=('git')
source=("https://github.com/chrisfair/checkpwn/releases/download/v${pkgver}/checkpwn.tar.gz")
sha256sums=('7aefa6e2cce2b4b8b5118ede93128aecd4d631fbbe3f2504c14a9bf4184a3a85')
package() {
  cd "${srcdir}"
  echo $(sha256sum checkpwn.tar.gz)
  # app install
  mkdir -p "${pkgdir}/usr/bin"
  install "${srcdir}/${pkgname}" "${pkgdir}/usr/bin"
}