blob: 98d3e054d370fe94d9a357832c81965ec434852e (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
#!/bin/bash
DEPS=(libidn)
SOURCE=http://repository.linagora.org/OpenLDAP/openldap-release/openldap-2.6.0.tgz
DESC="An open source implementation of the Lightweight Directory Access Protocol"
build () {
./configure prefix="/usr"
make
make DESTDIR=$PKG_DEST install
}
|