]> git.pld-linux.org Git - packages/beecrypt.git/blob - beecrypt.spec
- massive attack: no need for 755 for *.la
[packages/beecrypt.git] / beecrypt.spec
1 Summary:        The BeeCrypt Cryptography Library
2 Summary(pl):    Biblioteka kryptograficzna BeeCrypt
3 Name:           beecrypt
4 Version:        2.1.0
5 Release:        2
6 License:        LGPL
7 Group:          Development/Libraries
8 Source0:        http://www.virtualunlimited.com/download/%{name}-%{version}.tar.gz
9 #BuildRequires: autoconf
10 #BuildRequires: automake
11 #BuildRequires: libtool
12 URL:            http://beecrypt.virtualunlimited.com/
13 Buildroot:      %{tmpdir}/%{name}-%{version}-root-%(id -u -n)
14
15 %description
16 BeeCrypt is an open source cryptography library that contains highly
17 optimized C and assembler implementations of many well-known
18 algorithms including Blowfish, MD5, SHA-1, Diffie-Hellman, and
19 ElGamal.
20
21 %description -l pl
22 BeeCrypt jest open sourcow± bibliotek±, która zawiera wysoko
23 zoptymailzowane funkcje w C oraz assemblerze wielu algorytmów
24 szyfrowania m.in.: Blowfish, MD5, SHA-1, Diffie-Hellman oraz ElGamal.
25
26 %package devel
27 Summary:        The BeeCrypt Cryptography Library - development files
28 Summary(pl):    Pliki dla programistów u¿ywaj±cych biblioteki BeeCrypt
29 Group:          Development/Libraries
30 Requires:       %{name} = %{version}
31
32 %description devel
33 The BeeCrypt Cryptography Library - development files.
34
35 %description devel -l pl
36 Biblioteka kryptograficzna BeeCrypt - pliki dla programistów.
37
38 %package static
39 Summary:        The BeeCrypt Cryptography Library - static library
40 Summary(pl):    Biblioteka statyczna BeeCrypt
41 Group:          Development/Libraries
42 Requires:       %{name}-devel = %{version}
43
44 %description static
45 The BeeCrypt Cryptography Library - static library.
46
47 %description static -l pl
48 Biblioteka statyczna BeeCrypt.
49
50 %prep
51 %setup -q
52
53 %build
54 #rm -f missing
55 #libtoolize --copy --force
56 #aclocal
57 #autoconf
58 #automake -a -c
59 %configure2_13 \
60         --enable-static \
61         --%{?debug:en}%{!?debug:dis}able-debug
62 %{__make}
63
64 %install
65 rm -rf $RPM_BUILD_ROOT
66
67 %{__make} install \
68         DESTDIR=$RPM_BUILD_ROOT
69
70 %clean
71 rm -rf $RPM_BUILD_ROOT
72
73 %post   -p /sbin/ldconfig
74 %postun -p /sbin/ldconfig
75
76 %files
77 %defattr(644,root,root,755)
78 %doc AUTHORS BENCHMARKS BUGS CONTRIBUTORS ChangeLog NEWS README
79 %attr(755,root,root) %{_libdir}/lib*.so.*.*
80
81 %files devel
82 %defattr(644,root,root,755)
83 %doc AUTHORS* BENCHMARKS* CONTRIBUTORS* ChangeLog*
84 %{_libdir}/lib*.la
85 %attr(755,root,root) %{_libdir}/lib*.so
86 %{_includedir}/beecrypt
87
88 %files static
89 %defattr(644,root,root,755)
90 %{_libdir}/lib*.a
This page took 0.035527 seconds and 3 git commands to generate.