46 lines
1.6 KiB
Plaintext
46 lines
1.6 KiB
Plaintext
# Tanım: Dinamik web sitelerinde kullanılan programlama kodunun HTML biçimlendirmesine doğrudan gömülmesini sağlar.
|
||
# URL: http://www.php.net
|
||
# Paketçi: milisarge
|
||
# Gerekler: apache libxml2 aspell aspell-tr libxslt enchant pcre pth freetype libexif libjpeg-turbo libpng libtiff xorg curl db mariadb openldap postgresql sqlite unixodbc openssl cyrus-sasl kerberos
|
||
# Grup: ağ
|
||
|
||
isim=php
|
||
surum=5.6.31
|
||
devir=1
|
||
|
||
kaynak=(http://php.net/distributions/$isim-$surum.tar.xz)
|
||
derle() {
|
||
|
||
cd $isim-$surum
|
||
|
||
./configure --prefix=/usr \
|
||
--sysconfdir=/etc \
|
||
--localstatedir=/var \
|
||
--datadir=/usr/share/php \
|
||
--mandir=/usr/share/man \
|
||
--enable-fpm \
|
||
--with-fpm-user=apache \
|
||
--with-fpm-group=apache \
|
||
--with-config-file-path=/etc \
|
||
--with-zlib \
|
||
--enable-bcmath \
|
||
--with-bz2 \
|
||
--enable-calendar \
|
||
--enable-dba=shared \
|
||
--enable-mysqlnd \
|
||
--with-gdbm \
|
||
--with-gmp \
|
||
--enable-ftp \
|
||
--with-gettext \
|
||
--enable-mbstring \
|
||
--with-readline
|
||
make
|
||
make -j1 INSTALL_ROOT=$PKG install
|
||
|
||
install -v -m644 php.ini-production $PKG/etc/php.ini
|
||
mv -v $PKG/etc/php-fpm.conf{.default,}
|
||
|
||
sed -i 's@php/includes"@&\ninclude_path = ".:/usr/lib/php"@' $PKG/etc/php.ini
|
||
|
||
}
|