-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Argon2 is a password-hashing function, which keepasxc need.
- Loading branch information
Showing
1 changed file
with
35 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,35 @@ | ||
#!/usr/bin/env beesh | ||
|
||
# BEE_VERSION argon2-20171227-0 | ||
|
||
SRCURL[0]="https://github.com/P-H-C/phc-winner-argon2/archive/${PKGVERSION}.tar.gz argon2-20171227.tar.gz" | ||
|
||
# PATCHURL+=() | ||
|
||
build_in_sourcedir | ||
|
||
# sourcesubdir_append src | ||
|
||
|
||
#mee_extract() { | ||
# bee_extract "${@}" | ||
#} | ||
|
||
#mee_patch() { | ||
# bee_patch "${@}" | ||
#} | ||
|
||
#mee_configure() { | ||
# bee_configure | ||
#} | ||
|
||
mee_build() { | ||
bee_build OPTTARGET=generic | ||
} | ||
|
||
mee_install() { | ||
bee_install OPTTARGET=generic | ||
install -Dm644 man/${PKGNAME}.1 ${D}${MANDIR}/man1/${PKGNAME}.1 | ||
install -Dm644 lib${PKGNAME}.pc ${D}${LIBDIR}/pkgconfig/lib${PKGNAME}.pc | ||
} | ||
## by default this may be 'make install DESTDIR="${D}"' |