22 lines
540 B
Plaintext
22 lines
540 B
Plaintext
|
# Description: Sockets module for PHP
|
||
|
# URL: http://www.php.net
|
||
|
# Maintainer: Mikhail Kolesnik, mike at openbunker dot org
|
||
|
# Depends on:
|
||
|
|
||
|
name=php-sockets
|
||
|
version=5.2.6
|
||
|
release=1
|
||
|
source=(http://www.php.net/distributions/php-$version.tar.bz2)
|
||
|
|
||
|
build() {
|
||
|
cd php-$version
|
||
|
|
||
|
./configure --disable-all \
|
||
|
--enable-sockets=shared,/usr
|
||
|
make build-modules
|
||
|
|
||
|
install -d $PKG/{etc/php/conf.d,usr/lib/php/extensions}
|
||
|
install -m 755 modules/sockets.so $PKG/usr/lib/php/extensions
|
||
|
echo "extension=sockets.so" > $PKG/etc/php/conf.d/sockets.ini
|
||
|
}
|