Skip to content
This repository was archived by the owner on Nov 29, 2024. It is now read-only.

argon2 build without optimizations #30

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 4 additions & 4 deletions argon2/PKGBUILD
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
pkgname=argon2
_pkgname=phc-winner-argon2
pkgver=20190702
pkgrel=2
pkgrel=3
pkgdesc='Password hash Argon2, winner of Password Hashing Competition (PHC).'
arch=('x86_64')
url='https://github.com/P-H-C/phc-winner-argon2'
Expand All @@ -20,18 +20,18 @@ prepare() {
build() {
cd ${_pkgname}-${pkgver}

make LIBRARY_REL=lib
make OPTTARGET='none' LIBRARY_REL=lib
}

check() {
cd ${_pkgname}-${pkgver}

make
make OPTTARGET='none'
}

package() {
cd ${_pkgname}-${pkgver}
make LIBRARY_REL=lib DESTDIR=${pkgdir} install
make OPTTARGET='none' LIBRARY_REL=lib DESTDIR=${pkgdir} install

install -D -m0644 LICENSE ${pkgdir}/usr/share/licenses/argon2/LICENSE
#install -D -m0644 libargon2.pc ${pkgdir}/usr/lib/pkgconfig/libargon2.pc
Expand Down