30 lines
764 B
Plaintext
30 lines
764 B
Plaintext
# Tanım: PHP için MySQL modulü
|
||
# URL: http://www.php.net
|
||
# Paketçi: milisarge
|
||
# Gerekler: mariadb php
|
||
# Grup: sistem
|
||
|
||
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
|
||
}
|