contrib/php-bcmath/Pkgfile

22 lines
536 B
Plaintext
Raw Normal View History

2008-05-08 14:45:06 +02:00
# Description: BC Math module for PHP
# URL: http://www.php.net
# Maintainer: Mikhail Kolesnik, mike at openbunker dot org
# Depends on:
name=php-bcmath
2010-03-10 13:14:07 +01:00
version=5.2.13
2008-05-08 14:45:06 +02:00
release=1
source=(http://www.php.net/distributions/php-$version.tar.bz2)
build() {
cd php-$version
./configure --disable-all \
--enable-bcmath=shared,/usr
make build-modules
install -d $PKG/{etc/php/conf.d,usr/lib/php/extensions}
install -m 755 modules/bcmath.so $PKG/usr/lib/php/extensions
echo "extension=bcmath.so" > $PKG/etc/php/conf.d/bcmath.ini
}