summaryrefslogtreecommitdiff
path: root/repo/core
diff options
context:
space:
mode:
authordavidovski <david@davidovski.xyz>2022-01-03 00:29:11 +0000
committerdavidovski <david@davidovski.xyz>2022-01-03 00:29:11 +0000
commitac3ed056305e74831bdc6e04df4ae23196aa5641 (patch)
tree9867ebce12f2e70be43365d5959452bbf4606e92 /repo/core
parent601b35f9892596a56ccb8ee4758f22126f16cd7f (diff)
added libldap
Diffstat (limited to 'repo/core')
-rw-r--r--repo/core/libldap.xibuild12
1 files changed, 12 insertions, 0 deletions
diff --git a/repo/core/libldap.xibuild b/repo/core/libldap.xibuild
new file mode 100644
index 0000000..98d3e05
--- /dev/null
+++ b/repo/core/libldap.xibuild
@@ -0,0 +1,12 @@
+#!/bin/bash
+
+DEPS=(libidn)
+
+SOURCE=http://repository.linagora.org/OpenLDAP/openldap-release/openldap-2.6.0.tgz
+DESC="An open source implementation of the Lightweight Directory Access Protocol"
+
+build () {
+ ./configure prefix="/usr"
+ make
+ make DESTDIR=$PKG_DEST install
+}