From 8f969b438b89d8f5ede97198ae3fbfcd35f8dceb Mon Sep 17 00:00:00 2001 From: dockes Date: Sat, 21 Jan 2006 15:25:14 +0000 Subject: [PATCH] *** empty log message *** --- packaging/rpm/recollmdk.spec | 61 ++++++++++++++++++++++++++++++++++++ 1 file changed, 61 insertions(+) create mode 100644 packaging/rpm/recollmdk.spec diff --git a/packaging/rpm/recollmdk.spec b/packaging/rpm/recollmdk.spec new file mode 100644 index 00000000..59145a47 --- /dev/null +++ b/packaging/rpm/recollmdk.spec @@ -0,0 +1,61 @@ +%define name recoll +%define version 1.1.0 +%define release %mkrel 1 + +Name: %{name} +Version: %{version} +Release: %{release} + +Summary: Desktop full text search tool with a qt gui +Source0: http://www.recoll.org/%{name}-%{version}.tar.gz +URL: http://www.recoll.org/ +Group: Applications/Databases + +BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-buildroot +License: GPL +# We build with a static link to xapian to avoid this dependency +#Requires: xapian-core + +%description +Recoll is a personal full text search package for Linux, FreeBSD and +other Unix systems. It is based on a very strong backend (Xapian), for +which it provides an easy to use, feature-rich, easy administration +interface. + +# --------------------------------------------------------------------------- + +%prep +%setup -q + +# --------------------------------------------------------------------------- + +%build +[ -n "$QTDIR" ] || . %{_sysconfdir}/profile.d/qt.sh +%configure +make %{?_smp_mflags} static + +# --------------------------------------------------------------------------- + +%install +rm -rf $RPM_BUILD_ROOT +%makeinstall + +# --------------------------------------------------------------------------- + +%clean +rm -rf $RPM_BUILD_ROOT + +# --------------------------------------------------------------------------- + +%files +%defattr(-,root,root,-) +%{_bindir}/* +%{_datadir}/%{name} +%{_mandir}/man1/recoll* +%{_mandir}/man5/recoll* + +# --------------------------------------------------------------------------- + +%changelog +* Thu Jan 10 2006 Jean-Francois Dockes 1.1.0-1 +- Initial packaging