blob: ae04b047b4629ad8689d93b0d2803311fb5092f8 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
#!/bin/bash
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
}
|