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