blob: 5faf6925e65ce9b77aaee5c13359ffb3371a6225 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
#!/bin/sh
MAKEDEPS="make groff"
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
}
|