aboutsummarylogtreecommitdiffstats
path: root/PKGBUILD
blob: 9a1dd027465a47f32473c8b4fa1fba4fbc26581b (plain)
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
26
27
28
29
30
# Maintainer: Simon Williams <simon@clockcycles.net>
pkgname=pywdgen
pkgver=1.0
pkgrel=4
epoch=
pkgdesc="A simple readable password generator, written in Python"
arch=(any)
url="https://github.com/simonpw/pywdgen"
license=('GPL')
groups=()
depends=('python>=3.0')
makedepends=('git')
checkdepends=()
optdepends=()
provides=()
conflicts=()
replaces=()
backup=()
options=()
install=
changelog=
source=("git+https://github.com/simonpw/pywdgen.git")
noextract=()
md5sums=('SKIP')

package() {
        cd "$srcdir/$pkgname"
        install -Dm755 pywdgen.py ${pkgdir}/usr/bin/pywdgen
        install -Dm644 COPYING ${pkgdir}/usr/share/licenses/pywdgen/COPYING
}