]> git.pld-linux.org Git - packages/tesseract.git/blob - tesseract.spec
- updated to 3.02.02
[packages/tesseract.git] / tesseract.spec
1 # TODO:
2 # - warnings at compile stage about pointer size on amd64 - needs check
3 Summary:        Tesseract Open Source OCR Engine
4 Summary(pl.UTF-8):      Tesseract - silnik OCR o otwartych źródłach
5 Name:           tesseract
6 Version:        3.02.02
7 Release:        1
8 License:        Apache v2.0
9 Group:          Applications/Graphics
10 #Source0Download: http://code.google.com/p/tesseract-ocr/downloads/list
11 Source0:        http://tesseract-ocr.googlecode.com/files/%{name}-ocr-%{version}.tar.gz
12 # Source0-md5:  26adc8154f0e815053816825dde246e6
13 URL:            http://code.google.com/p/tesseract-ocr/
14 BuildRequires:  autoconf >= 2.50
15 BuildRequires:  automake
16 BuildRequires:  leptonlib-devel
17 BuildRequires:  libstdc++-devel
18 BuildRequires:  libtool
19 Suggests:       tesseract-data >= 3
20 BuildRoot:      %{tmpdir}/%{name}-%{version}-root-%(id -u -n)
21
22 %description
23 A commercial quality OCR engine originally developed at HP between
24 1985 and 1995. In 1995, this engine was among the top 3 evaluated by
25 UNLV. It was open-sourced by HP and UNLV in 2005.
26
27 %description -l pl.UTF-8
28 Silnik OCR o komercyjnej jakości oryginalnie stworzony przez HP w
29 latach 1985-1995. W 1995 roku był jednym z 3 najlepszych wg UNLV.
30 Źródła zostały uwolnione przez HP i UNLV w 2005 roku.
31
32 %package devel
33 Summary:        Header files for Tesseract libraries
34 Summary(pl.UTF-8):      Pliki nagłówkowe bibliotek Tesseracta
35 Group:          Development/Libraries
36 Requires:       %{name} = %{version}-%{release}
37 Requires:       leptonlib-devel
38 Requires:       libstdc++-devel
39
40 %description devel
41 This package contains the development header files necessary to
42 develop applications using Tesseract API.
43
44 %description devel -l pl.UTF-8
45 Ten pakiet zawiera pliki nagłówkowe potrzebne do tworzenia programów
46 wykorzystujących API Tesseracta.
47
48 %package static
49 Summary:        Static Tesseract libraries
50 Summary(pl.UTF-8):      Statyczne biblioteki Tesseracta
51 Group:          Development/Libraries
52 Requires:       %{name}-devel = %{version}-%{release}
53
54 %description static
55 Static Tesseract libraries.
56
57 %description static -l pl.UTF-8
58 Statyczne biblioteki Tesseracta.
59
60 %prep
61 %setup -q -n %{name}-ocr
62
63 %build
64 %{__libtoolize}
65 %{__aclocal}
66 %{__autoconf}
67 %{__autoheader}
68 %{__automake}
69 %configure
70 %{__make}
71
72 %install
73 rm -rf $RPM_BUILD_ROOT
74
75 %{__make} install \
76         DESTDIR=$RPM_BUILD_ROOT
77
78 # test program?
79 %{__rm} $RPM_BUILD_ROOT%{_bindir}/classifier_tester
80 %clean
81 rm -rf $RPM_BUILD_ROOT
82
83 %files
84 %defattr(644,root,root,755)
85 %doc AUTHORS COPYING ChangeLog README ReleaseNotes
86 %attr(755,root,root) %{_bindir}/ambiguous_words
87 %attr(755,root,root) %{_bindir}/cntraining
88 %attr(755,root,root) %{_bindir}/combine_tessdata
89 %attr(755,root,root) %{_bindir}/dawg2wordlist
90 %attr(755,root,root) %{_bindir}/mftraining
91 %attr(755,root,root) %{_bindir}/shapeclustering
92 %attr(755,root,root) %{_bindir}/tesseract
93 %attr(755,root,root) %{_bindir}/unicharset_extractor
94 %attr(755,root,root) %{_bindir}/wordlist2dawg
95 %attr(755,root,root) %{_libdir}/libtesseract.so.*.*.*
96 %attr(755,root,root) %ghost %{_libdir}/libtesseract.so.3
97 %dir %{_datadir}/tessdata
98 %dir %{_datadir}/tessdata/configs
99 %{_datadir}/tessdata/configs/*
100 %dir %{_datadir}/tessdata/tessconfigs
101 %{_datadir}/tessdata/tessconfigs/*
102 %{_mandir}/man1/ambiguous_words.1*
103 %{_mandir}/man1/cntraining.1*
104 %{_mandir}/man1/combine_tessdata.1*
105 %{_mandir}/man1/dawg2wordlist.1*
106 %{_mandir}/man1/mftraining.1*
107 %{_mandir}/man1/shapeclustering.1*
108 %{_mandir}/man1/tesseract.1*
109 %{_mandir}/man1/unicharset_extractor.1*
110 %{_mandir}/man1/wordlist2dawg.1*
111
112 %files devel
113 %defattr(644,root,root,755)
114 %attr(755,root,root) %{_libdir}/libtesseract.so
115 %{_libdir}/libtesseract.la
116 %{_includedir}/%{name}
117 %{_pkgconfigdir}/tesseract.pc
118 %{_mandir}/man5/unicharambigs.5*
119 %{_mandir}/man5/unicharset.5*
120
121 %files static
122 %defattr(644,root,root,755)
123 %{_libdir}/libtesseract.a
This page took 0.046856 seconds and 4 git commands to generate.