opt/php-mysql/Pkgfile

21 lines
546 B
Plaintext
Raw Normal View History

2008-05-07 19:43:07 +02:00
# Description: MySQL module for PHP
# URL: http://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
2013-01-17 18:52:01 +01:00
version=5.4.11
2008-05-07 19:43:07 +02:00
release=1
source=(http://www.php.net/distributions/php-$version.tar.bz2)
build () {
cd php-$version
./configure --disable-all --with-mysql=shared,/usr
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
echo "extension=mysql.so" > $PKG/etc/php/conf.d/mysql.ini
}