blob: a371da4058b141dd25f65878ebdc6e3583c980d2 (
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
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=(324e8f850a1fe8af348d89f25686b62ee30b161f1d49246e03ff1a799a532967)
build() {
cd "$srcdir/autopasswd-$pkgver"
make PREFIX=/usr LDFLAGS=
}
package() {
cd "$srcdir/autopasswd-$pkgver"
make PREFIX=/usr DESTDIR="$pkgdir" install
}
|