2008-05-07 19:43:07 +02:00
|
|
|
# Description: MySQL module for PHP
|
2021-06-05 17:02:30 +02:00
|
|
|
# URL: https://www.php.net
|
|
|
|
# Maintainer: Juergen Daubert, jue at crux dot nu
|
|
|
|
# Depends on: mysql
|
2008-05-07 19:43:07 +02:00
|
|
|
|
|
|
|
name=php-mysql
|
2021-09-25 11:33:18 +02:00
|
|
|
version=8.0.11
|
2008-05-07 19:43:07 +02:00
|
|
|
release=1
|
2020-06-06 13:00:05 +02:00
|
|
|
source=(https://php.net/distributions/php-$version.tar.xz)
|
2008-05-07 19:43:07 +02:00
|
|
|
|
|
|
|
build () {
|
2021-06-05 17:02:30 +02:00
|
|
|
cd php-$version
|
2008-05-07 19:43:07 +02:00
|
|
|
|
2021-06-05 17:02:30 +02:00
|
|
|
./configure \
|
|
|
|
--disable-all \
|
|
|
|
--enable-pdo=shared \
|
|
|
|
--enable-mysqlnd=shared \
|
|
|
|
--with-mysqli=shared,mysqlnd \
|
|
|
|
--with-pdo-mysql=shared,mysqlnd
|
2008-05-07 19:43:07 +02:00
|
|
|
|
2021-06-05 17:02:30 +02:00
|
|
|
make build-modules
|
2013-02-25 13:12:33 +01:00
|
|
|
|
2021-06-05 17:02:30 +02:00
|
|
|
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,mysqli,pdo_mysql}.so \
|
|
|
|
> $PKG/etc/php/conf.d/mysql.ini
|
2008-05-07 19:43:07 +02:00
|
|
|
}
|