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-mbstring | |
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-mbstring')
-rw-r--r-- | php-mbstring/.signature | 6 | ||||
-rw-r--r-- | php-mbstring/Pkgfile | 23 |
2 files changed, 16 insertions, 13 deletions
diff --git a/php-mbstring/.signature b/php-mbstring/.signature index 123ded2cc..b0644cfbc 100644 --- a/php-mbstring/.signature +++ b/php-mbstring/.signature @@ -1,5 +1,5 @@ untrusted comment: verify with /etc/ports/opt.pub -RWSE3ohX2g5d/Z3eR1ZNyn/ylgAyAxEHLozTGBok8yh2RkFXSSyp8HgsFWDGwbSVxl2kcpsrVwK0sNAvR7eeuTyBgraZj/ZGCQY= -SHA256 (Pkgfile) = 8af84a13cf92d3255358cb61e55924438e6869594c880bfe182bf9899edac3de +RWSE3ohX2g5d/ezfVyWgdNsP16n7/dxNeEMDV0u6KKF13Qyis1CkW5AV1XF3RpOzHqPPbjOTTp9JxaAUHJ3MmDJXxBw5mHCVEwY= +SHA256 (Pkgfile) = 9879a9b1366dc87421ca6eae207c5616b07d70210e0a54430b273176ea8ac3f8 SHA256 (.footprint) = 4a444295762f936750fb32f977171aecc73d9347bf51bace13d7f9dfc200812e -SHA256 (php-7.4.18.tar.xz) = ab97f22b128d21dcbc009b50a37aaea0051b2721cbcd122d9e00e6ffc3c4b7e1 +SHA256 (php-8.0.7.tar.xz) = d5fc2e4fc780a32404d88c360e3e0009bc725d936459668e9c2ac992f2d83654 diff --git a/php-mbstring/Pkgfile b/php-mbstring/Pkgfile index 808095510..0e45197d2 100644 --- a/php-mbstring/Pkgfile +++ b/php-mbstring/Pkgfile @@ -1,21 +1,24 @@ # Description: Multibyte string module for PHP -# URL: https://www.php.net -# Maintainer: Juergen Daubert, jue at crux dot nu -# Depends on: oniguruma +# URL: https://www.php.net +# Maintainer: Juergen Daubert, jue at crux dot nu +# Depends on: oniguruma name=php-mbstring -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 --enable-mbstring=shared - make build-modules + ./configure \ + --disable-all \ + --enable-mbstring=shared \ + --with-external-pcre + make build-modules - install -d $PKG/{etc/php/conf.d,usr/lib/php/extensions} - install -m 755 modules/mbstring.so $PKG/usr/lib/php/extensions/ + install -d $PKG/{etc/php/conf.d,usr/lib/php/extensions} + install -m 755 modules/mbstring.so $PKG/usr/lib/php/extensions/ - printf 'extension=%s\n' mbstring.so > $PKG/etc/php/conf.d/mbstring.ini + printf 'extension=%s\n' mbstring.so > $PKG/etc/php/conf.d/mbstring.ini } |