contrib/php-tidy/Pkgfile

27 lines
638 B
Plaintext
Raw Normal View History

2015-11-05 12:07:37 +01:00
# Description: Tidy module for PHP
# URL: http://www.php.net
2016-01-08 16:17:45 +01:00
# Maintainer: Juergen Daubert, jue at crux dot nu
# Packager: Alan Mizrahi, alan at mizrahi dot com dot ve
2015-11-05 12:07:37 +01:00
# Depends on: php tidy
name=php-tidy
2016-06-24 13:50:58 +02:00
version=5.6.23
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
}