summaryrefslogtreecommitdiff
path: root/php-mysql/Pkgfile
blob: 36b9547194cbf31adbae4d37d52ff66e3924e1a9 (plain)
    1 # Description: MySQL module for PHP
    2 # URL:         http://www.php.net
    3 # Maintainer:  Juergen Daubert, jue at crux dot nu
    4 # Depends on:  mysql
    5 
    6 name=php-mysql
    7 version=5.3.14
    8 release=1
    9 source=(http://www.php.net/distributions/php-$version.tar.bz2)
   10 
   11 build () {
   12     cd php-$version
   13 
   14     ./configure --disable-all --with-mysql=shared,/usr
   15     make build-modules
   16 
   17     install -d $PKG/{etc/php/conf.d,usr/lib/php/extensions}
   18     install -m 755 modules/mysql.so $PKG/usr/lib/php/extensions
   19     echo "extension=mysql.so" > $PKG/etc/php/conf.d/mysql.ini
   20 }

Generated by cgit