22 lines
546 B
Plaintext
22 lines
546 B
Plaintext
# Description: LDAP module for PHP
|
|
# URL: https://www.php.net
|
|
# Maintainer: Tim Biermann, tbier at posteo dot de
|
|
# Depends on: openldap cyrus-sasl
|
|
|
|
name=php-ldap
|
|
version=8.3.11
|
|
release=1
|
|
source=(https://www.php.net/distributions/php-$version.tar.xz)
|
|
|
|
build() {
|
|
cd php-$version
|
|
./configure \
|
|
--disable-all \
|
|
--with-ldap=shared \
|
|
--with-ldap-sasl
|
|
make build-modules
|
|
install -d $PKG/etc/php/conf.d
|
|
echo "extension=ldap.so" > $PKG/etc/php/conf.d/ldap.ini
|
|
install -D -m775 modules/ldap.so $PKG/usr/lib/php/extensions/ldap.so
|
|
}
|