]> git.pld-linux.org Git - packages/php-systemd.git/commitdiff
new, version 0.1
authorElan Ruusamäe <glen@delfi.ee>
Thu, 6 Mar 2014 18:16:16 +0000 (20:16 +0200)
committerElan Ruusamäe <glen@delfi.ee>
Thu, 6 Mar 2014 18:16:16 +0000 (20:16 +0200)
php-systemd.spec [new file with mode: 0644]

diff --git a/php-systemd.spec b/php-systemd.spec
new file mode 100644 (file)
index 0000000..2183b5d
--- /dev/null
@@ -0,0 +1,79 @@
+#
+# Conditional build:
+%bcond_without tests           # build without tests
+
+%define                php_name        php%{?php_suffix}
+%define                modname         systemd
+Summary:       PHP extension allowing native interaction with systemd and its journal
+Name:          %{php_name}-%{modname}
+Version:       0.1
+Release:       1
+License:       BSD
+Group:         Development/Languages/PHP
+Source0:       https://github.com/systemd/php-systemd/archive/master/%{name}-%{version}.tar.gz
+# Source0-md5: d77898dc3aabc15b94a7a40839c6ff7b
+URL:           https://github.com/systemd/php-systemd
+%{?with_tests:BuildRequires:    %{php_name}-cli}
+BuildRequires: %{php_name}-devel
+BuildRequires: rpmbuild(macros) >= 1.666
+BuildRequires: systemd-devel
+%{?requires_php_extension}
+Provides:      php(systemd) = %{version}
+BuildRoot:     %{tmpdir}/%{name}-%{version}-root-%(id -u -n)
+
+%description
+PHP extension allowing native interaction with systemd and journal
+
+%prep
+%setup -qc
+mv %{name}-*/* .
+
+%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
+install -d $RPM_BUILD_ROOT%{php_sysconfdir}/conf.d
+install -d $RPM_BUILD_ROOT{%{php_sysconfdir}/conf.d,%{php_extensiondir}}
+
+%{__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
+
+%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 LICENSE.txt
+%config(noreplace) %verify(not md5 mtime size) %{php_sysconfdir}/conf.d/%{modname}.ini
+%attr(755,root,root) %{php_extensiondir}/%{modname}.so
This page took 0.217445 seconds and 4 git commands to generate.