From cb447620084a20be80d116c81c2e9ec110be7118 Mon Sep 17 00:00:00 2001 From: davidovski Date: Sun, 16 Jan 2022 01:23:51 +0000 Subject: restructured repo system --- repo/system/libxcrypt.xibuild | 19 +++++++++++++++++++ 1 file changed, 19 insertions(+) create mode 100644 repo/system/libxcrypt.xibuild (limited to 'repo/system/libxcrypt.xibuild') diff --git a/repo/system/libxcrypt.xibuild b/repo/system/libxcrypt.xibuild new file mode 100644 index 0000000..a4b5a3e --- /dev/null +++ b/repo/system/libxcrypt.xibuild @@ -0,0 +1,19 @@ +#!/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 +} + +package () { + # this is probably wrong + ln $PKG_DEST/usr/lib/libcrypt.so $PKG_DEST/usr/lib/libcrypt.so.2 +} + + -- cgit v1.2.1