]> git.pld-linux.org Git - packages/php-pecl-sphinx.git/commitdiff
- new, based on template-spec
authorElan Ruusamäe <glen@pld-linux.org>
Mon, 14 Jun 2010 17:08:33 +0000 (17:08 +0000)
committercvs2git <feedback@pld-linux.org>
Sun, 24 Jun 2012 12:13:13 +0000 (12:13 +0000)
Changed files:
    php-pecl-sphinx.spec -> 1.1

php-pecl-sphinx.spec [new file with mode: 0644]

diff --git a/php-pecl-sphinx.spec b/php-pecl-sphinx.spec
new file mode 100644 (file)
index 0000000..ddb455b
--- /dev/null
@@ -0,0 +1,60 @@
+#
+# Conditional build:
+%bcond_without tests           # build without tests
+
+%define                modname sphinx
+Summary:       %{modname} - client for sphinx SQL full-text search engine
+Name:          php-pecl-%{modname}
+Version:       1.0.4
+Release:       1
+License:       PHP
+Group:         Development/Languages/PHP
+Source0:       http://pecl.php.net/get/%{modname}-%{version}.tgz
+# Source0-md5: 768a2409cdf7927e751dc6bfb8312767
+URL:           http://pecl.php.net/package/sphinx/
+BuildRequires: libsphinxclient-devel
+BuildRequires: php-devel >= 4:5.0.4
+BuildRequires: rpmbuild(macros) >= 1.519
+%{?requires_php_extension}
+BuildRoot:     %{tmpdir}/%{name}-%{version}-root-%(id -u -n)
+
+%description
+Client extension for Sphinx - Opensource SQL full-text search engine.
+
+%prep
+%setup -qc
+mv %{modname}-%{version}/* .
+
+%build
+phpize
+%configure
+%{__make}
+
+%install
+rm -rf $RPM_BUILD_ROOT
+install -d $RPM_BUILD_ROOT%{php_sysconfdir}/conf.d
+
+%{__make} install \
+       INSTALL_ROOT=$RPM_BUILD_ROOT \
+       EXTENSION_DIR=%{php_extensiondir}
+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 CREDITS
+%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.066354 seconds and 4 git commands to generate.