opt/php-mysql/Pkgfile

29 lines
653 B
Plaintext
Raw Normal View History

2008-05-07 19:43:07 +02:00
# Description: MySQL module for PHP
# URL: https://www.php.net
# Maintainer: Juergen Daubert, jue at crux dot nu
# Depends on: mariadb
2008-05-07 19:43:07 +02:00
name=php-mysql
2022-12-01 12:29:57 +01:00
version=8.1.13
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
2008-05-07 19:43:07 +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
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,mysqli,pdo_mysql}.so \
> $PKG/etc/php/conf.d/mysql.ini
2008-05-07 19:43:07 +02:00
}