blob: 514c1b253f6556fdac25826fa9d13d08c9c22bc1 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
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
}
|