[packages/php-facedetect] new, based on pecl template

glen glen at pld-linux.org
Fri Jun 7 14:35:33 CEST 2013


commit 81ba7f00956967407410dd48479b9ed6ca4b48dc
Author: Elan Ruusamäe <glen at delfi.ee>
Date:   Fri Jun 7 15:35:11 2013 +0300

    new, based on pecl template

 php-facedetect.spec | 70 +++++++++++++++++++++++++++++++++++++++++++++++++++++
 1 file changed, 70 insertions(+)
---
diff --git a/php-facedetect.spec b/php-facedetect.spec
new file mode 100644
index 0000000..e8c807f
--- /dev/null
+++ b/php-facedetect.spec
@@ -0,0 +1,70 @@
+#
+# Conditional build:
+%bcond_without	tests		# build without tests
+
+%define		php_name	php%{?php_suffix}
+%define		modname	facedetect
+Summary:	PHP Facedetect Extension
+Name:		%{php_name}-%{modname}
+Version:	1.0.1
+Release:	0.1
+License:	PHP 3.0
+Group:		Development/Languages/PHP
+#Source0:	https://github.com/infusion/PHP-Facedetect/tarball/master/%{modname}.tar.gz
+Source0:	http://www.xarg.org/download/facedetect-%{version}.tar.gz
+# Source0-md5:	e76f2b1fd2b24a84f7123888f433f030
+URL:		http://www.xarg.org/project/php-facedetect/
+BuildRequires:	%{php_name}-devel
+BuildRequires:	opencv-devel
+BuildRequires:	rpmbuild(macros) >= 1.650
+%{?requires_php_extension}
+BuildRoot:	%{tmpdir}/%{name}-%{version}-root-%(id -u -n)
+
+%description
+This extension provides a PHP implementation of the OpenCV library.
+The extension offers two new functions. In princible, they differ only
+by their return value. The first returns only the number of faces
+found on the given image and the other an associative array of their
+coordinates.
+
+%prep
+%setup -qc
+mv infusion-PHP-Facedetect-4b1dfe1/* .
+
+%build
+phpize
+%configure
+%{__make}
+
+%install
+rm -rf $RPM_BUILD_ROOT
+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
+
+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 CREDITS EXPERIMENTAL
+%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-facedetect.git/commitdiff/81ba7f00956967407410dd48479b9ed6ca4b48dc



More information about the pld-cvs-commit mailing list