blob: eaab0e834ab5f8a723c1b060b1410bf6c24ab01f (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
# FS#57749: relink against missing libraries in split package
sed -i 's/for dir in clients servers/for dir in libraries clients servers/' PKGBUILD
# ldap.conf comes in package 'libldap', also include, libs and devel man
# => remove them in 'openldap' package
sed -i '/usr\/share\/man\/man5\/slapo-lastbind.5/ a \
rm -rf ${pkgdir}/etc/openldap/ldap.conf \
rm -rf ${pkgdir}/usr/{lib,include,man3} \
' PKGBUILD
# we actually need only libldap, but installing openldap doesn't harm us
ADDITIONAL_INSTALL_PACKAGE=libldap
|