opt/php-ftp/Pkgfile

27 lines
625 B
Plaintext

# Description: FTP module for PHP
# URL: http://www.php.net
# Maintainer: Juergen Daubert, jue at crux dot nu
# Packager: Alan Mizrahi, alan at mizrahi dot com dot ve
# Depends on:
name=php-ftp
version=5.6.32
release=1
source=(http://www.php.net/distributions/php-$version.tar.xz)
build() {
cd php-$version
./configure \
--disable-all \
--enable-${name#php-}=shared
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
}