summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authordavidovski <david@davidovski.xyz>2021-12-07 20:27:35 +0000
committerdavidovski <david@davidovski.xyz>2021-12-07 20:27:35 +0000
commit40bd376ca0d5053cafa4d9f30fb125cac68baad1 (patch)
tree17757e5238a1bc6f02205c7965b7b47d78d2cf5b
parent1934624b4871e7b8bf7b8c5ab155549c6dc2a1d6 (diff)
added pcre and libxcrypt
-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
+}
+
+