2018-06-09 00:06:58 +02:00
|
|
|
|
# Tanım: PHP için MySQL modulü
|
|
|
|
|
# URL: http://www.php.net
|
|
|
|
|
# Paketçi: milisarge
|
|
|
|
|
# Gerekler: mariadb php
|
2018-07-31 09:59:06 +02:00
|
|
|
|
# Grup: sistem
|
2018-06-09 00:06:58 +02:00
|
|
|
|
|
|
|
|
|
isim=php-mysql
|
|
|
|
|
surum=5.6.31
|
|
|
|
|
devir=1
|
|
|
|
|
kaynak=(http://php.net/distributions/php-$surum.tar.xz)
|
|
|
|
|
|
|
|
|
|
derle() {
|
|
|
|
|
cd php-$surum
|
|
|
|
|
|
|
|
|
|
./configure --disable-all \
|
|
|
|
|
--enable-pdo=shared \
|
|
|
|
|
--enable-mysqlnd=shared \
|
|
|
|
|
--with-mysql=shared,mysqlnd \
|
|
|
|
|
--with-mysqli=shared,mysqlnd \
|
|
|
|
|
--with-pdo-mysql=shared,mysqlnd
|
|
|
|
|
|
|
|
|
|
make build-modules
|
|
|
|
|
|
|
|
|
|
install -d $PKG/{etc/php/conf.d,usr/lib/php/extensions}
|
|
|
|
|
install -m 755 modules/*mysql*.so $PKG/usr/lib/php/extensions
|
|
|
|
|
|
|
|
|
|
printf 'extension=%s\n' {mysqlnd,mysql,mysqli,pdo_mysql}.so \
|
|
|
|
|
> $PKG/etc/php/conf.d/mysql.ini
|
|
|
|
|
}
|