opt/php-mysql/Pkgfile

28 lines
744 B
Plaintext
Raw Normal View History

2008-05-07 19:43:07 +02:00
# Description: MySQL module for PHP
2020-06-06 13:00:05 +02:00
# URL: https://www.php.net
2011-02-02 13:44:37 +01:00
# Maintainer: Juergen Daubert, jue at crux dot nu
2010-03-01 18:03:37 +01:00
# Depends on: mysql
2008-05-07 19:43:07 +02:00
name=php-mysql
version=7.4.18
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 () {
cd php-$version
./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
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
2018-03-30 12:50:09 +02:00
printf 'extension=%s\n' {mysqlnd,mysqli,pdo_mysql}.so \
> $PKG/etc/php/conf.d/mysql.ini
2008-05-07 19:43:07 +02:00
}