diff options
author | Juergen Daubert <jue@jue.li> | 2021-06-05 17:02:30 +0200 |
---|---|---|
committer | Juergen Daubert <jue@jue.li> | 2021-06-05 17:02:30 +0200 |
commit | e67dc4ac370b9f8cc63c8f7c060d81d0ff478719 (patch) | |
tree | 20d0db79f05f9595b17b8eb2ea24e5a32ed7c317 /php-zip | |
parent | 75cc271693544a437acb00542ad4a89d5c57bf06 (diff) | |
download | opt-e67dc4ac370b9f8cc63c8f7c060d81d0ff478719.tar.gz opt-e67dc4ac370b9f8cc63c8f7c060d81d0ff478719.tar.xz |
[notify] php: update to 8.0.7
new major version, several applications needs probably some
adjustments.
See https://www.php.net/releases/8.0/en.php
Diffstat (limited to 'php-zip')
-rw-r--r-- | php-zip/.signature | 6 | ||||
-rw-r--r-- | php-zip/Pkgfile | 20 |
2 files changed, 13 insertions, 13 deletions
diff --git a/php-zip/.signature b/php-zip/.signature index 86343acce..736c87135 100644 --- a/php-zip/.signature +++ b/php-zip/.signature @@ -1,5 +1,5 @@ untrusted comment: verify with /etc/ports/opt.pub -RWSE3ohX2g5d/YAJAupVJTWLqGNBzJIIfLWBwdCrd/G9XMmBWGzgH0Pxlf73vaJ/EXF01CGGqA0xH0eHv3lVGra5p6SZKv2SmAY= -SHA256 (Pkgfile) = cf5f8fa7d8a917e6d1e58c6098cebd78c178ecd269fda4055291e40e8e5c86ae +RWSE3ohX2g5d/dE7POWkSkMR60gJ4KYnSEXkdm//kUuWKgfEHnWBVbDJzIQp5CFPe4IHQ12lBBIo8ut/UOP807kPSzWMh6f4wAs= +SHA256 (Pkgfile) = 9528db2e67a7c88e61226d08ff6962978b9ee3fd5e61e9926e3d74f5cd1958e9 SHA256 (.footprint) = 0ba08044c2d47be4c86015de875a10f15dfee8367b932c5466a0212da28e4203 -SHA256 (php-7.4.18.tar.xz) = ab97f22b128d21dcbc009b50a37aaea0051b2721cbcd122d9e00e6ffc3c4b7e1 +SHA256 (php-8.0.7.tar.xz) = d5fc2e4fc780a32404d88c360e3e0009bc725d936459668e9c2ac992f2d83654 diff --git a/php-zip/Pkgfile b/php-zip/Pkgfile index 2a0f35554..5daa7bbd8 100644 --- a/php-zip/Pkgfile +++ b/php-zip/Pkgfile @@ -1,21 +1,21 @@ # Description: Zip module for PHP -# URL: https://www.php.net -# Maintainer: Juergen Daubert, jue at crux dot nu -# Depends on: libzip +# URL: https://www.php.net +# Maintainer: Juergen Daubert, jue at crux dot nu +# Depends on: libzip name=php-zip -version=7.4.18 +version=8.0.7 release=1 source=(https://www.php.net/distributions/php-$version.tar.xz) build() { - cd php-$version + cd php-$version - ./configure --disable-all --with-zip=shared,/usr - make build-modules + ./configure --disable-all --with-zip=shared,/usr + make build-modules - install -d $PKG/{etc/php/conf.d,usr/lib/php/extensions} - install -m 755 modules/zip.so $PKG/usr/lib/php/extensions/ + install -d $PKG/{etc/php/conf.d,usr/lib/php/extensions} + install -m 755 modules/zip.so $PKG/usr/lib/php/extensions/ - printf 'extension=%s\n' zip.so > $PKG/etc/php/conf.d/zip.ini + printf 'extension=%s\n' zip.so > $PKG/etc/php/conf.d/zip.ini } |