summaryrefslogtreecommitdiff
path: root/repo/core
diff options
context:
space:
mode:
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
+}