contrib/php-bcmath/Pkgfile

23 lines
593 B
Plaintext
Raw Normal View History

2008-05-08 14:45:06 +02:00
# Description: BC Math module for PHP
2015-11-05 12:07:12 +01:00
# URL: http://www.php.net
# Maintainer: Juergen Daubert, jue at crux dot nu
# Packager: Mikhail Kolesnik, mike at openbunker dot org
2008-05-08 14:45:06 +02:00
# Depends on:
name=php-bcmath
2016-06-24 13:50:31 +02:00
version=5.6.23
2008-05-08 14:45:06 +02:00
release=1
2015-11-05 12:07:12 +01:00
source=(http://www.php.net/distributions/php-$version.tar.xz)
2008-05-08 14:45:06 +02:00
build() {
cd php-$version
./configure --disable-all \
2015-11-05 12:07:12 +01:00
--enable-bcmath=shared,/usr
2008-05-08 14:45:06 +02:00
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
}