blob: d8a53386dfc0317d96b1d1ce796c1eace8548895 (
plain)
1 # Description: Framework and distribution system for reusable PHP components
2 # URL: https://pear.php.net/
3 # Maintainer: Juergen Daubert, jue at crux dot nu
4 # Depends on: php
5
6 name=pear
7 version=1.10.13
8 release=5
9 source=(https://php.net/distributions/php-8.1.13.tar.xz)
10
11 build() {
12 cd php-8.1.13/pear
13
14 export PHP_PEAR_SYSCONF_DIR=/etc/php
15 export INSTALL_ROOT=$PKG
16
17 php -n install-pear-nozlib.phar
18
19 rm -r $PKG/.{filemap,lock,depdb*,channels,registry}
20 rm -r $PKG/usr/lib/php/pear/{docs,tests}
21 }
|