summarylogtreecommitdiffstats
path: root/PKGBUILD
blob: 64b9fc26e7c663d1057d657a3f22c819e00451f5 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
# Maintainer: Christopher Fair  <christopherpfair@comcast.net>
pkgname=checkpwn
pkgver=1.0.0
pkgrel=1
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")
sha1sums=('e964fa35aad39a9dcf54df31ed6ec80bdffab3fc')

package() {
  cd "${srcdir}"
  
  # app install
  mkdir -p "${pkgdir}/usr/bin"
  install "${srcdir}/${pkgname}" "${pkgdir}/usr/bin"
}