From 40bd376ca0d5053cafa4d9f30fb125cac68baad1 Mon Sep 17 00:00:00 2001 From: davidovski Date: Tue, 7 Dec 2021 20:27:35 +0000 Subject: added pcre and libxcrypt --- repo/core/libxcrypt.xibuild | 14 ++++++++++++++ repo/core/pcre.xibuild | 14 ++++++++++++++ 2 files changed, 28 insertions(+) create mode 100644 repo/core/libxcrypt.xibuild create mode 100644 repo/core/pcre.xibuild (limited to 'repo/core') 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 +} + + diff --git a/repo/core/pcre.xibuild b/repo/core/pcre.xibuild new file mode 100644 index 0000000..7788687 --- /dev/null +++ b/repo/core/pcre.xibuild @@ -0,0 +1,14 @@ +#!/bin/bash + +DEPS=(glibc) + +SOURCE=https://github.com/PhilipHazel/pcre2/releases/download/pcre2-10.39/pcre2-10.39.tar.bz2 +DESC="A library that implements regular expressions in a perl style" + +build () { + CC=gcc ./configure --prefix=/usr + make + make DESTDIR=$PKG_DEST install +} + + -- cgit v1.2.1