]> git.pld-linux.org Git - packages/fvs.git/blame_incremental - fvs.spec
- tabs in preamble
[packages/fvs.git] / fvs.spec
... / ...
CommitLineData
1Summary: Fingerprint Verification System
2Summary(pl.UTF-8): Fingerprint Verifycation System - system weryfikacji odcisków palców
3Name: fvs
4Version: 0.1.1
5Release: 1
6Epoch: 1
7License: MPL 1.1
8Group: Libraries
9Source0: http://dl.sourceforge.net/fvs/%{name}-%{version}.tar.bz2
10# Source0-md5: f369e2f47f900712230576b56e7aaef1
11URL: http://fvs.sourceforge.net/
12BuildRequires: ImageMagick-devel
13BuildRequires: automake
14Obsoletes: fvs-gfvs
15BuildRoot: %{tmpdir}/%{name}-%{version}-root-%(id -u -n)
16
17%description
18This library provides a framework to use when creating a fingerprint
19recognition program. It provides easy to use interfaces to load
20fingerprint files, process fingerprint images and analyse the data.
21
22%description -l pl.UTF-8
23Ta biblioteka udostępnia szkielet, który można wykorzystać przy
24tworzeniu programów rozpoznających odciski palców. Dostarcza łatwy w
25użyciu interfejs do wczytywania plików z odciskami, przetwarzania tych
26obrazów i analizy danych.
27
28%package devel
29Summary: Header files for FVS library
30Summary(pl.UTF-8): Pliki nagłówkowe biblioteki FVS
31Group: Development/Libraries
32Requires: %{name} = %{epoch}:%{version}-%{release}
33
34%description devel
35Header files for FVS library.
36
37%description devel -l pl.UTF-8
38Pliki nagłówkowe biblioteki FVS.
39
40%package static
41Summary: Static FVS library
42Summary(pl.UTF-8): Statyczna biblioteka FVS
43Group: Development/Libraries
44Requires: %{name}-devel = %{epoch}:%{version}-%{release}
45
46%description static
47Static FVS library.
48
49%description static -l pl.UTF-8
50Statyczna biblioteka FVS.
51
52%prep
53%setup -q
54
55# hack for broken sources
56touch fvs
57
58%build
59cp -f /usr/share/automake/config.* .
60%configure
61%{__make}
62
63%install
64rm -rf $RPM_BUILD_ROOT
65
66%{__make} install \
67 DESTDIR=$RPM_BUILD_ROOT
68
69rm -rf doc/images/.xvpics
70# man3 pages not installed because of filenames (use HTML docs instead)
71
72%clean
73rm -rf $RPM_BUILD_ROOT
74
75%post -p /sbin/ldconfig
76%postun -p /sbin/ldconfig
77
78%files
79%defattr(644,root,root,755)
80%doc AUTHORS ChangeLog NEWS README TODO
81%attr(755,root,root) %{_bindir}/fvs_*
82%attr(755,root,root) %{_libdir}/lib*.so.*.*.*
83
84%files devel
85%defattr(644,root,root,755)
86%doc doc/{*.css,*.html,images}
87%attr(755,root,root) %{_libdir}/lib*.so
88%{_libdir}/lib*.la
89%{_includedir}/fvs
90
91%files static
92%defattr(644,root,root,755)
93%{_libdir}/lib*.a
This page took 0.050069 seconds and 4 git commands to generate.