21 lines
519 B
Plaintext
21 lines
519 B
Plaintext
# Description: Gettext module for PHP
|
|
# URL: https://www.php.net
|
|
# Maintainer: Juergen Daubert, jue at crux dot nu
|
|
|
|
name=php-gettext
|
|
version=8.0.10
|
|
release=1
|
|
source=(https://www.php.net/distributions/php-$version.tar.xz)
|
|
|
|
build() {
|
|
cd php-$version
|
|
|
|
./configure --disable-all --with-gettext=shared,/usr
|
|
make build-modules
|
|
|
|
install -d $PKG/{etc/php/conf.d,usr/lib/php/extensions}
|
|
install -m 755 modules/gettext.so $PKG/usr/lib/php/extensions/
|
|
|
|
printf 'extension=%s\n' gettext.so > $PKG/etc/php/conf.d/gettext.ini
|
|
}
|