diff options
author | davidovski <david@davidovski.xyz> | 2022-01-03 00:29:11 +0000 |
---|---|---|
committer | davidovski <david@davidovski.xyz> | 2022-01-03 00:29:11 +0000 |
commit | ac3ed056305e74831bdc6e04df4ae23196aa5641 (patch) | |
tree | 9867ebce12f2e70be43365d5959452bbf4606e92 /repo/core/libldap.xibuild | |
parent | 601b35f9892596a56ccb8ee4758f22126f16cd7f (diff) |
added libldap
Diffstat (limited to 'repo/core/libldap.xibuild')
-rw-r--r-- | repo/core/libldap.xibuild | 12 |
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 +} |