diff options
author | Remi Collet <remi@remirepo.net> | 2024-10-16 11:55:11 +0200 |
---|---|---|
committer | Remi Collet <remi@php.net> | 2024-10-16 11:55:11 +0200 |
commit | 19cb52df164be99ccde7dd770dd8bebeac2dc299 (patch) | |
tree | 1486b3ec39363632514deb6a341107b0bf4f2e83 | |
parent | 02c52d8f093ef87015f1d7056076a2d5b910d5c6 (diff) |
modernize
-rw-r--r-- | php-pecl-raphf.spec | 32 |
1 files changed, 6 insertions, 26 deletions
diff --git a/php-pecl-raphf.spec b/php-pecl-raphf.spec index ca2cfeb..cd71de5 100644 --- a/php-pecl-raphf.spec +++ b/php-pecl-raphf.spec @@ -106,25 +106,26 @@ EOF cd %{sources} %{__phpize} +[ -f Makefile.global ] && GLOBAL=Makefile.global || GLOBAL=build/Makefile.global +sed -e 's/INSTALL_ROOT/DESTDIR/' -i $GLOBAL cd ../NTS %configure \ --with-php-config=%{__phpconfig} -make %{?_smp_mflags} +%make_build %if %{with_zts} cd ../ZTS %configure \ --with-php-config=%{__ztsphpconfig} -make %{?_smp_mflags} +%make_build %endif %install %{?dtsenable} -make -C NTS \ - install INSTALL_ROOT=%{buildroot} +%make_install -C NTS # install config file install -D -m 644 %{ini_name} %{buildroot}%{php_inidir}/%{ini_name} @@ -133,8 +134,7 @@ install -D -m 644 %{ini_name} %{buildroot}%{php_inidir}/%{ini_name} install -D -m 644 package.xml %{buildroot}%{pecl_xmldir}/%{name}.xml %if %{with_zts} -make -C ZTS \ - install INSTALL_ROOT=%{buildroot} +%make_install -C ZTS install -D -m 644 %{ini_name} %{buildroot}%{php_ztsinidir}/%{ini_name} %endif @@ -149,26 +149,6 @@ do install -Dpm 644 %{sources}/$i %{buildroot}%{pecl_docdir}/%{pecl_name}/$i done -%if 0%{?fedora} < 24 && 0%{?rhel} < 8 -# when pear installed alone, after us -%triggerin -- %{?scl_prefix}php-pear -if [ -x %{__pecl} ] ; then - %{pecl_install} %{pecl_xmldir}/%{name}.xml >/dev/null || : -fi - -# posttrans as pear can be installed after us -%posttrans -if [ -x %{__pecl} ] ; then - %{pecl_install} %{pecl_xmldir}/%{name}.xml >/dev/null || : -fi - -%postun -if [ $1 -eq 0 -a -x %{__pecl} ] ; then - %{pecl_uninstall} %{pecl_name} >/dev/null || : -fi -%endif - - %check cd %{sources} |