diff options
| author | aethrvmn <me@aethrvmn.gr> | 2025-11-16 20:43:49 +0000 |
|---|---|---|
| committer | aethrvmn <me@aethrvmn.gr> | 2025-11-16 20:43:49 +0000 |
| commit | 0582b0f8cd26678e741a06ba2ab42cc47a7c689a (patch) | |
| tree | 028dcc99591775e87682c0ff8259fea3a21aa538 /src/tesserae/extra/openldap.nim | |
| parent | moved core LFS tessera to core/ (diff) | |
moved non LFS tessera to extra/
Diffstat (limited to 'src/tesserae/extra/openldap.nim')
| -rw-r--r-- | src/tesserae/extra/openldap.nim | 27 |
1 files changed, 27 insertions, 0 deletions
diff --git a/src/tesserae/extra/openldap.nim b/src/tesserae/extra/openldap.nim new file mode 100644 index 0000000..ecae9db --- /dev/null +++ b/src/tesserae/extra/openldap.nim @@ -0,0 +1,27 @@ +import .. / lapis + +tessera "openldap": + source: "https://www.openldap.org/software/download/OpenLDAP/openldap-release/openldap-2.6.10.tgz" + patches: @[ + "https://www.linuxfromscratch.org/patches/blfs/12.4/openldap-2.6.10-consolidated-1.patch" + ] + dependencies: @[ + "gnutls", + "cyrus_sasl" + ] + build: @[ + "patch -Np1 -i ../openldap-2.6.10-consolidated-1.patch &&", + "autoconf", + """ + ./configure --prefix=/usr \ + --sysconfdir=/etc \ + --disable-static \ + --enable-dynamic \ + --disable-debug \ + --disable-slapd + """, + "make depend", + "make", + "make install" + ] + result: "libldap.so" |
