contrib/php-mbstring/Pkgfile

22 lines
554 B
Plaintext
Raw Normal View History

2008-05-08 14:47:29 +02:00
# Description: Multibyte string module for PHP
# URL: http://www.php.net
# Maintainer: Mikhail Kolesnik, mike at openbunker dot org
# Depends on:
name=php-mbstring
2011-01-11 20:24:10 +01:00
version=5.3.5
2008-05-08 14:47:29 +02:00
release=1
source=(http://www.php.net/distributions/php-$version.tar.bz2)
build() {
cd php-$version
./configure --disable-all \
--enable-mbstring=shared,/usr
make build-modules
install -d $PKG/{etc/php/conf.d,usr/lib/php/extensions}
install -m 755 modules/mbstring.so $PKG/usr/lib/php/extensions
echo "extension=mbstring.so" > $PKG/etc/php/conf.d/mbstring.ini
}