mirror of
https://github.com/dslm4515/BMLFS.git
synced 2025-08-03 16:40:25 +00:00
60 lines
2.1 KiB
Bash
60 lines
2.1 KiB
Bash
#! /bin/bash
|
|
|
|
# OpenLDAP (client install)
|
|
# Source: https://www.openldap.org/software/download/OpenLDAP/openldap-release/openldap-2.6.10.tgz
|
|
#
|
|
# $BUILD = Directory to temporarily install
|
|
# $PKGS = Directory to store built packages
|
|
#
|
|
# DEPS
|
|
# Required: NONE
|
|
# Recommended: Cyrus-SASL
|
|
# Optional: GnuTLS, Pth, unixODBC, MariaDB or PostgreSQL or MySQL, OpenSLP, and Berkeley DB
|
|
|
|
export PVER="2.6.10"
|
|
|
|
# Set configure options
|
|
export CARGS="--sysconfdir=/etc "
|
|
export CARGS+="--disable-static "
|
|
export CARGS+="--enable-dynamic "
|
|
export CARGS+="--disable-debug "
|
|
export CARGS+="--disable-slapd "
|
|
export CARGS+="--with-cyrus-sasl "
|
|
export CARGS+="--disable-versioning "
|
|
export CARGS+="--with-systemd=no "
|
|
export CARGS+="--enable-crypt "
|
|
|
|
# Configure source
|
|
./configure --prefix=/usr $CARGS
|
|
|
|
make -j2 depend &&
|
|
read -p "Compile?" && make -j2 &&
|
|
|
|
sudo -S make DESTDIR=$BUILD install &&
|
|
|
|
cd $BUILD && sudo -S mkdir -v ${BUILD}/install &&
|
|
cat > /tmp/slack-desc << "EOF"
|
|
# HOW TO EDIT THIS FILE:
|
|
# The "handy ruler" below makes it easier to edit a package description. Line
|
|
# up the first '|' above the ':' following the base package name, and the '|'
|
|
# on the right side marks the last column you can put a character in. You must
|
|
# make exactly 11 lines for the formatting to be correct. It's also
|
|
# customary to leave one space after the ':' except on otherwise blank lines.
|
|
|
|
|-----handy-ruler------------------------------------------------------|
|
|
openldap-client: openldap-client (OpenLDAP client programs)
|
|
openldap-client:
|
|
openldap-client: OpenLDAP is an open source implementation of the Lightweight
|
|
openldap-client: Directory Access Protocol. LDAP is a alternative to the X.500
|
|
openldap-client: Directory Access Protocol (DAP). It uses the TCP/IP stack versus
|
|
openldap-client: the overly complex OSI stack.
|
|
openldap-client:
|
|
openldap-client: LDAP is often used to provide authentication (such as for email).
|
|
openldap-client:
|
|
openldap-client: The OpenLDAP homepage is http://www.openldap.org/
|
|
openldap-client:
|
|
EOF
|
|
sudo -S mv -v /tmp/slack-desc install/ &&
|
|
sudo -S makepkg -l y -c n $PKGS/openldap-client-$PVER-$PSUFFIX &&
|
|
sudo -S rm -rf ${BUILD}/*
|