summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--repo/core/libxcrypt.xibuild14
-rw-r--r--repo/core/pcre.xibuild14
2 files changed, 28 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
+}
+
+
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
+}
+
+