]> git.pld-linux.org Git - packages/tesseract.git/blobdiff - tesseract.spec
initial update to 3.04.00
[packages/tesseract.git] / tesseract.spec
index 1f12cc357131898ecb30043c516cb44f43abaa31..a14c119dc7c931adb47788cd4fd34d66fe6ca261 100644 (file)
@@ -1,17 +1,21 @@
-# NOTE
-# - warnings at compile stage about pointer size on amd64
+# TODO:
+# - warnings at compile stage about pointer size on amd64 - needs check
 Summary:       Tesseract Open Source OCR Engine
-Summary(pl.UTF-8):   Tesseract - silnik OCR o otwartych źródłach
+Summary(pl.UTF-8):     Tesseract - silnik OCR o otwartych źródłach
 Name:          tesseract
-Version:       1.02
-Release:       1
-License:       Apache Software License v2
+Version:       3.04.00
+Release:       0.1
+License:       Apache v2.0
 Group:         Applications/Graphics
-Source0:       http://dl.sourceforge.net/tesseract-ocr/%{name}-%{version}.tar.gz
-# Source0-md5: 473389c9f447b081ac199ba3a0e55b27
-URL:           http://sourceforge.net/projects/tesseract-ocr
+Source0:       https://github.com/tesseract-ocr/tesseract/archive/%{version}.tar.gz
+# Source0-md5: 078130b9c7d28c558a0e49d432505864
+URL:           http://code.google.com/p/tesseract-ocr/
+BuildRequires: autoconf >= 2.50
 BuildRequires: automake
-BuildRequires: libtiff-devel
+BuildRequires: leptonlib-devel >= 1.71
+BuildRequires: libstdc++-devel
+BuildRequires: libtool
+Suggests:      tesseract-data >= 3
 BuildRoot:     %{tmpdir}/%{name}-%{version}-root-%(id -u -n)
 
 %description
@@ -24,11 +28,43 @@ Silnik OCR o komercyjnej jakości oryginalnie stworzony przez HP w
 latach 1985-1995. W 1995 roku był jednym z 3 najlepszych wg UNLV.
 Źródła zostały uwolnione przez HP i UNLV w 2005 roku.
 
+%package devel
+Summary:       Header files for Tesseract libraries
+Summary(pl.UTF-8):     Pliki nagłówkowe bibliotek Tesseracta
+Group:          Development/Libraries
+Requires:      %{name} = %{version}-%{release}
+Requires:      leptonlib-devel
+Requires:      libstdc++-devel
+
+%description devel
+This package contains the development header files necessary to
+develop applications using Tesseract API.
+
+%description devel -l pl.UTF-8
+Ten pakiet zawiera pliki nagłówkowe potrzebne do tworzenia programów
+wykorzystujących API Tesseracta.
+
+%package static
+Summary:       Static Tesseract libraries
+Summary(pl.UTF-8):     Statyczne biblioteki Tesseracta
+Group:          Development/Libraries
+Requires:      %{name}-devel = %{version}-%{release}
+
+%description static
+Static Tesseract libraries.
+
+%description static -l pl.UTF-8
+Statyczne biblioteki Tesseracta.
+
 %prep
 %setup -q
 
 %build
-cp -f /usr/share/automake/config.sub config
+%{__libtoolize}
+%{__aclocal}
+%{__autoconf}
+%{__autoheader}
+%{__automake}
 %configure
 %{__make}
 
@@ -38,10 +74,53 @@ rm -rf $RPM_BUILD_ROOT
 %{__make} install \
        DESTDIR=$RPM_BUILD_ROOT
 
+# test program?
+%{__rm} $RPM_BUILD_ROOT%{_bindir}/classifier_tester
+%{__rm} $RPM_BUILD_ROOT%{_libdir}/libtesseract.la
+
 %clean
 rm -rf $RPM_BUILD_ROOT
 
+%post   -p /sbin/ldconfig
+%postun -p /sbin/ldconfig
+
 %files
 %defattr(644,root,root,755)
-%doc AUTHORS COPYING ChangeLog README
+%doc AUTHORS COPYING ChangeLog README ReleaseNotes
+%attr(755,root,root) %{_bindir}/ambiguous_words
+%attr(755,root,root) %{_bindir}/cntraining
+%attr(755,root,root) %{_bindir}/combine_tessdata
+%attr(755,root,root) %{_bindir}/dawg2wordlist
+%attr(755,root,root) %{_bindir}/mftraining
+%attr(755,root,root) %{_bindir}/shapeclustering
 %attr(755,root,root) %{_bindir}/tesseract
+%attr(755,root,root) %{_bindir}/unicharset_extractor
+%attr(755,root,root) %{_bindir}/wordlist2dawg
+%attr(755,root,root) %{_libdir}/libtesseract.so.*.*.*
+%attr(755,root,root) %ghost %{_libdir}/libtesseract.so.3
+%dir %{_datadir}/tessdata
+%dir %{_datadir}/tessdata/configs
+%{_datadir}/tessdata/configs/*
+%dir %{_datadir}/tessdata/tessconfigs
+%{_datadir}/tessdata/tessconfigs/*
+%{_mandir}/man1/ambiguous_words.1*
+%{_mandir}/man1/cntraining.1*
+%{_mandir}/man1/combine_tessdata.1*
+%{_mandir}/man1/dawg2wordlist.1*
+%{_mandir}/man1/mftraining.1*
+%{_mandir}/man1/shapeclustering.1*
+%{_mandir}/man1/tesseract.1*
+%{_mandir}/man1/unicharset_extractor.1*
+%{_mandir}/man1/wordlist2dawg.1*
+
+%files devel
+%defattr(644,root,root,755)
+%attr(755,root,root) %{_libdir}/libtesseract.so
+%{_includedir}/%{name}
+%{_pkgconfigdir}/tesseract.pc
+%{_mandir}/man5/unicharambigs.5*
+%{_mandir}/man5/unicharset.5*
+
+%files static
+%defattr(644,root,root,755)
+%{_libdir}/libtesseract.a
This page took 0.112841 seconds and 4 git commands to generate.