]> git.pld-linux.org Git - packages/fsplib.git/blob - fsplib.spec
b347500d70d456840605d6e5380c1e7b9180a5fd
[packages/fsplib.git] / fsplib.spec
1 Summary:        fsp library
2 Summary(pl):    biblioteka fsp
3 Name:           fsplib
4 Version:        0.6
5 Release:        1
6 License:        see COPYING
7 Group:          Libraries
8 Source0:        http://dl.sourceforge.net/fsp/%{name}-%{version}.tar.gz
9 # Source0-md5:  18f837120b5a185840dd16555728dc30
10 URL:            http://fsp.sourceforge.net/fsplib.html
11 BuildRequires:  autoconf
12 BuildRequires:  automake
13 BuildRequires:  libtool
14 BuildRoot:      %{tmpdir}/%{name}-%{version}-root-%(id -u -n)
15
16 %description
17 This is C library which support talking with FSP server using FSP v2 protocol
18 and provides posix-like file manipulation interface.
19
20 For more information about FSP protocol see http://fsp.sourceforge.net/
21 For library and API info see http://fsp.sourceforge.net/fsplib.html
22
23 %description -l pl
24 To jest biblioteka napisana w C, która obs³uguje "rozmowê" z serwerem FSP
25 u¿ywaj±c wersji 2 protoko³u i dostarcza zgodnego z POSIX interfejsu.
26
27 Wiêcej informacji o protokole FSP znajdziesz na http://fsp.sourceforge.net/.
28 Informacje o bibliotece i API znajduj± siê na
29 http://fsp.sourceforge.net/fsplib.html.
30
31 %package devel
32 Summary:        Header files for FSP library
33 Summary(pl):    Pliki nag³ówkowe biblioteki FSP
34 Group:          Development/Libraries
35 Requires:       %{name} = %{version}-%{release}
36
37 %description devel
38 Header files for FSP library.
39
40 %description devel -l pl
41 Pliki nag³ówkowe biblioteki FSP.
42
43 %package static
44 Summary:        Static FSP library
45 Summary(pl):    Statyczna biblioteka FSP
46 Group:          Development/Libraries
47 Requires:       %{name}-devel = %{version}-%{release}
48
49 %description static
50 Static FSP library.
51
52 %description static -l pl
53 Statyczna biblioteka FSP.
54
55 %prep
56 %setup -c -q
57
58 %build
59 autoreconf -i
60 %{__libtoolize}
61 %{__autoconf}
62 %{__automake}
63 %configure \
64         --enable-shared
65 %{__make}
66
67 %install
68 rm -rf $RPM_BUILD_ROOT
69
70 %{__make} install \
71         DESTDIR=$RPM_BUILD_ROOT
72
73 %clean
74 rm -rf $RPM_BUILD_ROOT
75
76 %post   -p /sbin/ldconfig
77 %postun -p /sbin/ldconfig
78
79 %files
80 %defattr(644,root,root,755)
81 %doc AUTHORS ChangeLog COPYING NEWS README TODO
82 %attr(755,root,root) %{_libdir}/lib*.so.*.*.*
83
84 %files devel
85 %defattr(644,root,root,755)
86 %attr(755,root,root) %{_libdir}/lib*.so
87 %{_libdir}/lib*.la
88 %{_includedir}/*
89
90 %files static
91 %defattr(644,root,root,755)
92 %{_libdir}/lib*.a
This page took 0.429208 seconds and 3 git commands to generate.