initial import
This commit is contained in:
parent
429a701ab1
commit
f1b23ea552
1
.gitignore
vendored
1
.gitignore
vendored
@ -0,0 +1 @@
|
||||
/libexttextcat-3.2.0.tar.xz
|
91
libexttextcat.spec
Normal file
91
libexttextcat.spec
Normal file
@ -0,0 +1,91 @@
|
||||
Name: libexttextcat
|
||||
Version: 3.2.0
|
||||
Release: 1%{?dist}
|
||||
Summary: Text categorization library
|
||||
|
||||
Group: System Environment/Libraries
|
||||
License: BSD
|
||||
URL: http://www.freedesktop.org/wiki/Software/libexttextcat
|
||||
Source: http://dev-www.libreoffice.org/src/libexttextcat/%{name}-%{version}.tar.xz
|
||||
BuildRoot: %(mktemp -ud %{_tmppath}/%{name}-%{version}-%{release}-XXXXXX)
|
||||
|
||||
Obsoletes: libtextcat < 3.2.0
|
||||
Provides: libtextcat = %{version}
|
||||
|
||||
%description
|
||||
%{name} is an N-Gram-Based Text Categorization library primarily
|
||||
intended for language guessing.
|
||||
|
||||
%package devel
|
||||
Summary: Development files for %{name}
|
||||
Group: Development/Libraries
|
||||
Requires: %{name}%{?_isa} = %{version}-%{release}
|
||||
Requires: pkgconfig
|
||||
Obsoletes: libtextcat-devel < 3.2.0
|
||||
Provides: libtextcat-devel = %{version}
|
||||
|
||||
%description devel
|
||||
The %{name}-devel package contains libraries and header files for
|
||||
developing applications that use %{name}.
|
||||
|
||||
%package tools
|
||||
Summary: Tool for creating custom document fingerprints
|
||||
Group: Applications/Publishing
|
||||
Requires: %{name}%{?_isa} = %{version}-%{release}
|
||||
|
||||
%description tools
|
||||
The %{name}-tools package contains the createfp program that allows
|
||||
you to easily create your own document fingerprints.
|
||||
|
||||
|
||||
%prep
|
||||
%setup -q
|
||||
|
||||
|
||||
%build
|
||||
%configure --disable-static --disable-werror
|
||||
make %{?_smp_mflags}
|
||||
|
||||
|
||||
%install
|
||||
rm -rf %{buildroot}
|
||||
make install DESTDIR=%{buildroot}
|
||||
rm -f %{buildroot}/%{_libdir}/*.la
|
||||
|
||||
|
||||
%check
|
||||
make check
|
||||
|
||||
|
||||
%clean
|
||||
rm -rf %{buildroot}
|
||||
|
||||
|
||||
%post -p /sbin/ldconfig
|
||||
|
||||
|
||||
%postun -p /sbin/ldconfig
|
||||
|
||||
|
||||
%files
|
||||
%defattr(-,root,root,-)
|
||||
%doc LICENSE README*
|
||||
%{_libdir}/%{name}.so.*
|
||||
%{_datadir}/%{name}
|
||||
|
||||
|
||||
%files devel
|
||||
%defattr(-,root,root,-)
|
||||
%{_includedir}/%{name}
|
||||
%{_libdir}/%{name}.so
|
||||
%{_libdir}/pkgconfig/%{name}.pc
|
||||
|
||||
|
||||
%files tools
|
||||
%defattr(-,root,root,-)
|
||||
%{_bindir}/createfp
|
||||
|
||||
|
||||
%changelog
|
||||
* Tue Jan 24 2012 David Tardon <dtardon@redhat.com> 3.2.0-1
|
||||
- initial import
|
Loading…
Reference in New Issue
Block a user