2017-10-27 20:46:27 +02:00
|
|
|
|
# Tanım: Php için Gettext modülü
|
2017-04-11 08:59:48 +02:00
|
|
|
|
# URL: http://www.php.net
|
2017-10-27 20:46:27 +02:00
|
|
|
|
# Paketçi: milisarge
|
|
|
|
|
# Gerekler:
|
2017-02-19 21:58:42 +01:00
|
|
|
|
|
|
|
|
|
name=php-gettext
|
2017-07-07 14:16:02 +02:00
|
|
|
|
version=5.6.31
|
2017-02-19 21:58:42 +01:00
|
|
|
|
release=1
|
|
|
|
|
source=(http://www.php.net/distributions/php-$version.tar.xz)
|
|
|
|
|
|
|
|
|
|
build() {
|
|
|
|
|
cd php-$version
|
|
|
|
|
|
|
|
|
|
./configure \
|
|
|
|
|
--disable-all \
|
|
|
|
|
--with-${name#*-}=shared,/usr
|
|
|
|
|
make build-modules
|
|
|
|
|
|
|
|
|
|
install -d $PKG/etc/php/conf.d
|
|
|
|
|
for i in modules/*.so; do
|
|
|
|
|
install -D -m755 $i $PKG/usr/lib/php/extensions/${i##*/}
|
|
|
|
|
echo extension=/usr/lib/php/extensions/${i##*/} >> $PKG/etc/php/conf.d/${name#php-}.ini
|
|
|
|
|
done
|
|
|
|
|
|
|
|
|
|
}
|