aboutsummaryrefslogtreecommitdiffstats
path: root/dist/archlinux/stable/PKGBUILD
blob: 5f9bd32b51f71d2a20b92e30a3f8e93952ea404f (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=autopasswd
pkgver=1.1
pkgrel=1
pkgdesc="Reproducable password generator"
url="https://github.com/maandree/autopasswd"
arch=(i686 x86_64)
license=(GPL3)
depends=(glibc libpassphrase argparser)
makedepends=(glibc libpassphrase argparser make coreutils gcc)
source=("${url}/archive/${pkgver}.tar.gz")
sha256sums=(ec6ab01d298342930d14282ae07d6d8e37b1e8eab801ad99a6eb5c34c9375c37)


build() {
    cd "$srcdir/autopasswd-$pkgver"
    make PREFIX=/usr LDFLAGS=
}

package() {
    cd "$srcdir/autopasswd-$pkgver"
    make PREFIX=/usr DESTDIR="$pkgdir" install
}