]> git.pld-linux.org Git - packages/gnutls.git/blob - gnutls.spec
e392db1f1e443240caf885ac7fde3a54f1ce9a0e
[packages/gnutls.git] / gnutls.spec
1 Summary:        The GNU Transport Layer Security Library
2 Summary(pl):    Biblioteka GNU TLS (Transport Layer Security)
3 Name:           gnutls
4 Version:        0.8.7
5 Release:        1
6 License:        LGPL
7 Group:          Libraries
8 Source0:        ftp://ftp.gnutls.org/pub/gnutls/%{name}-%{version}.tar.gz
9 URL:            http://www.gnu.org/software/gnutls/
10 BuildRequires:  autoconf >= 2.54
11 BuildRequires:  automake
12 BuildRequires:  libtool
13 BuildRequires:  libgcrypt-devel >= 1.1.12
14 BuildRequires:  libtasn1-devel
15 BuildRequires:  lzo-devel
16 BuildRequires:  opencdk-devel >= 0.4.0
17 BuildRequires:  zlib-devel
18 BuildRoot:      %{tmpdir}/%{name}-%{version}-root-%(id -u -n)
19
20 %description
21 GnuTLS is a project that aims to develop a library which provides a
22 secure layer, over a reliable transport layer (ie. TCP/IP). Currently
23 the gnuTLS library implements the proposed standards by the IETF's TLS
24 working group.
25
26 %description -l pl
27 GnuTLS to projekt maj±cy na celu stworzenie biblioteki udostêpniaj±cej
28 pow³okê bezpieczeñstwa ponad pow³ok± transportow± (np. TCP/IP).
29 Aktualnie biblioteka gnuTLS implementuje standardy proponowane przez
30 grupê robocz± IETF TLS.
31
32 %package devel
33 Summary:        Header files etc to develop gnutls applications
34 Summary(pl):    Pliki nag³ówkowe i inne do gnutls
35 Group:          Development/Libraries
36 Requires:       %{name} = %{version}
37
38 %description devel
39 Header files etc to develop gnutls applications.
40
41 %description devel -l pl
42 Pliki nag³ówkowe i inne do gnutls.
43
44 %package static
45 Summary:        Static gnutls library
46 Summary(pl):    Biblioteka statyczna gnutls
47 Group:          Development/Libraries
48 Requires:       %{name}-devel = %{version}
49
50 %description static
51 Static gnutls library.
52
53 %description static -l pl
54 Biblioteka statyczna gnutls.
55
56 %prep
57 %setup -q
58
59 %build
60 rm -f missing
61 %{__libtoolize}
62 %{__aclocal}
63 %{__autoconf}
64 %{__automake}
65 %configure \
66         --disable-dependency-tracking
67
68 %{__make}
69
70 %install
71 rm -rf $RPM_BUILD_ROOT
72
73 %{__make} install \
74         DESTDIR=$RPM_BUILD_ROOT \
75         m4datadir=%{_aclocaldir}
76
77 %clean
78 rm -rf $RPM_BUILD_ROOT
79
80 %post   -p /sbin/ldconfig
81 %postun -p /sbin/ldconfig
82
83 %files
84 %defattr(644,root,root,755)
85 %doc AUTHORS ChangeLog NEWS README THANKS
86 %attr(755,root,root) %{_bindir}/*
87 %exclude %{_bindir}/*-config
88 %attr(755,root,root) %{_libdir}/lib*.so.*.*
89
90 %files devel
91 %defattr(644,root,root,755)
92 %attr(755,root,root) %{_bindir}/*-config
93 %attr(755,root,root) %{_libdir}/lib*.so
94 %{_libdir}/lib*.la
95 %{_includedir}/gnutls
96 %{_aclocaldir}/*
97
98 %files static
99 %defattr(644,root,root,755)
100 %{_libdir}/lib*.a
This page took 0.05302 seconds and 2 git commands to generate.