summarylogtreecommitdiffstats
path: root/PKGBUILD
blob: 016746452b6b0ef2549c31bc523db2b8ddaa134c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
# Maintainer: Everett B. <everettbutts@hotmail.com>
pkgname=passgen-git
pkgver=1.02
pkgrel=1
pkgdesc='A simple cli tool that generates passwords of a user defined length. Can currently create Random String, Secure Token String , and UUID4 Secure Unique String ID passwords'
url="https://github.com/Can221-ParOS/passgen-git.git"
license=('GPL3')
depends=("python")
makedepends=(git)
arch=('x86_64')
source=("git+$url")
md5sums=("SKIP")

pkgver() {
  cd "$pkgname"
  git describe --tag
}

package() {
    echo "$pkgname"
    mkdir -p "$pkgdir/usr/bin/"
    cp "$srcdir/$pkgname/passgen" "$pkgdir/usr/bin/passgen"
}