opt/php-sockets/Pkgfile

23 lines
614 B
Plaintext
Raw Normal View History

2015-11-04 17:31:10 +01:00
# Description: Socket module for PHP
# URL: http://www.php.net
# Maintainer: Juergen Daubert, jue at crux dot nu
# Packager: Alan Mizrahi, alan at mizrahi dot com dot ve
# Depends on:
name=php-sockets
2020-02-15 13:57:55 +01:00
version=7.4.2
release=1
source=(http://www.php.net/distributions/php-$version.tar.xz)
build() {
2018-03-30 12:50:21 +02:00
cd php-$version
2018-03-30 12:50:21 +02:00
./configure --disable-all --enable-sockets=shared
make build-modules
2018-03-30 12:50:21 +02:00
install -d $PKG/{etc/php/conf.d,usr/lib/php/extensions}
install -m 755 modules/sockets.so $PKG/usr/lib/php/extensions/
2018-03-30 12:50:21 +02:00
printf 'extension=%s\n' sockets.so > $PKG/etc/php/conf.d/sockets.ini
}