diff options
Diffstat (limited to 'repo/core/libxcrypt.xibuild')
-rw-r--r-- | repo/core/libxcrypt.xibuild | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/repo/core/libxcrypt.xibuild b/repo/core/libxcrypt.xibuild new file mode 100644 index 0000000..514c1b2 --- /dev/null +++ b/repo/core/libxcrypt.xibuild @@ -0,0 +1,14 @@ +#!/bin/bash + +DEPS=(glibc) + +SOURCE=https://github.com/besser82/libxcrypt/releases/download/v4.4.26/libxcrypt-4.4.26.tar.xz +DESC="A modern library for one-way hashing of passwords" + +build () { + CC=gcc ./configure --prefix=/usr + make + make DESTDIR=$PKG_DEST install +} + + |