diff options
author | davidovski <david@davidovski.xyz> | 2021-12-07 20:27:35 +0000 |
---|---|---|
committer | davidovski <david@davidovski.xyz> | 2021-12-07 20:27:35 +0000 |
commit | 40bd376ca0d5053cafa4d9f30fb125cac68baad1 (patch) | |
tree | 17757e5238a1bc6f02205c7965b7b47d78d2cf5b /repo | |
parent | 1934624b4871e7b8bf7b8c5ab155549c6dc2a1d6 (diff) |
added pcre and libxcrypt
Diffstat (limited to 'repo')
-rw-r--r-- | repo/core/libxcrypt.xibuild | 14 | ||||
-rw-r--r-- | repo/core/pcre.xibuild | 14 |
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 +} + + |