#!/bin/bash MAKEDEPS=(make ) DEPS=(libidn libsasl) PKG_VER=2.6.0 SOURCE=http://repository.linagora.org/OpenLDAP/openldap-release/openldap-$PKG_VER.tgz DESC="An open source implementation of the Lightweight Directory Access Protocol" build () { ./configure prefix="/usr" make } package () { make DESTDIR=$PKG_DEST install }