summaryrefslogtreecommitdiff
path: root/repo/system/libldap.xibuild
blob: 6e96421dc2799e96ee700c66cb1cf1ca31170804 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
#!/bin/bash

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
}