mirror of
https://gitlab.alpinelinux.org/alpine/aports.git
synced 2026-01-18 23:22:24 +01:00
32 lines
911 B
Plaintext
32 lines
911 B
Plaintext
# Contributor: Sören Tempel <soeren+alpine@soeren-tempel.net>
|
|
# Contributor: Corey Oliver <coreyjonoliver@gmail.com>
|
|
# Maintainer: Corey Oliver <coreyjonoliver@gmail.com>
|
|
pkgname=argon2
|
|
_pkgname=phc-winner-argon2
|
|
pkgver=20171227
|
|
pkgrel=1
|
|
pkgdesc="The password hash Argon2, winner of PHC"
|
|
url="https://github.com/P-H-C/phc-winner-argon2"
|
|
arch="all"
|
|
license="Apache-2.0 CC0-1.0"
|
|
subpackages="$pkgname-dev $pkgname-dev $pkgname-libs"
|
|
source="$pkgname-$pkgver.tar.gz::https://github.com/P-H-C/$_pkgname/archive/$pkgver.tar.gz"
|
|
builddir="$srcdir/$_pkgname-$pkgver"
|
|
|
|
build() {
|
|
cd "$builddir"
|
|
make OPTTARGET=none
|
|
}
|
|
|
|
check() {
|
|
cd "$builddir"
|
|
make OPTTARGET=none test
|
|
}
|
|
|
|
package() {
|
|
cd "$builddir"
|
|
make OPTTARGET=none DESTDIR="$pkgdir" install
|
|
}
|
|
|
|
sha512sums="9c9e1a3905e61ac6913d1e073c104477e419ddd0506adc4487e88e98d19165ed8901fe8bb11246ed0cc71b3523c190da9692d5926642f86be09c3e67510afe4d argon2-20171227.tar.gz"
|