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