[packages/php-mffi] new, version 0.1.0

glen glen at pld-linux.org
Tue Dec 29 16:31:03 CET 2015


commit 291817a5baa32267c6bbf855ed0765c456e19526
Author: Elan Ruusamäe <glen at delfi.ee>
Date:   Tue Dec 29 17:30:30 2015 +0200

    new, version 0.1.0
    
    see blog: http://mgdm.net/weblog/mffi/

 php-mffi.spec | 79 +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
 1 file changed, 79 insertions(+)
---
diff --git a/php-mffi.spec b/php-mffi.spec
new file mode 100644
index 0000000..4919a56
--- /dev/null
+++ b/php-mffi.spec
@@ -0,0 +1,79 @@
+#
+# Conditional build:
+%bcond_without	tests		# build without tests
+
+%define		php_name	php%{?php_suffix}
+%define		modname	mffi
+Summary:	Foreign function interface for PHP.
+Name:		%{php_name}-%{modname}
+Version:	0.1.0
+Release:	0.1
+License:	PHP 3.01
+Group:		Development/Languages/PHP
+Source0:	https://github.com/mgdm/MFFI/archive/master/%{modname}-%{version}.tar.gz
+# Source0-md5:	05b104f83a21c9e2dbc382af0c205497
+URL:		https://github.com/mgdm/MFFI
+%{?with_tests:BuildRequires:    %{php_name}-cli}
+BuildRequires:	%{php_name}-devel >= 4:7.0
+BuildRequires:	rpmbuild(macros) >= 1.666
+%{?requires_php_extension}
+Provides:	php(mffi) = %{version}
+BuildRoot:	%{tmpdir}/%{name}-%{version}-root-%(id -u -n)
+
+%description
+A new foreign-function interface for PHP.
+
+%prep
+%setup -qc
+mv MFFI-*/* .
+
+%build
+phpize
+%configure
+%{__make}
+
+%if %{with tests}
+# simple module load test
+%{__php} -n -q \
+	-d extension_dir=modules \
+	-d extension=%{modname}.so \
+	-m > modules.log
+grep %{modname} modules.log
+
+export NO_INTERACTION=1 REPORT_EXIT_STATUS=1 MALLOC_CHECK_=2
+%{__make} test \
+	PHP_EXECUTABLE=%{__php}
+%endif
+
+%install
+rm -rf $RPM_BUILD_ROOT
+%{__make} install \
+	EXTENSION_DIR=%{php_extensiondir} \
+	INSTALL_ROOT=$RPM_BUILD_ROOT
+
+install -d $RPM_BUILD_ROOT%{php_sysconfdir}/conf.d
+cat <<'EOF' > $RPM_BUILD_ROOT%{php_sysconfdir}/conf.d/%{modname}.ini
+; Enable %{modname} extension module
+extension=%{modname}.so
+EOF
+
+install -d $RPM_BUILD_ROOT%{_examplesdir}/%{name}-%{version}
+cp -a examples/* $RPM_BUILD_ROOT%{_examplesdir}/%{name}-%{version}
+
+%clean
+rm -rf $RPM_BUILD_ROOT
+
+%post
+%php_webserver_restart
+
+%postun
+if [ "$1" = 0 ]; then
+	%php_webserver_restart
+fi
+
+%files
+%defattr(644,root,root,755)
+%doc README.md TODO.md LICENCE
+%config(noreplace) %verify(not md5 mtime size) %{php_sysconfdir}/conf.d/%{modname}.ini
+%attr(755,root,root) %{php_extensiondir}/%{modname}.so
+%{_examplesdir}/%{name}-%{version}
================================================================

---- gitweb:

http://git.pld-linux.org/gitweb.cgi/packages/php-mffi.git/commitdiff/291817a5baa32267c6bbf855ed0765c456e19526



More information about the pld-cvs-commit mailing list