]> git.pld-linux.org Git - packages/beecrypt.git/blob - beecrypt.spec
perl -pi -e "s/pld-list\@pld.org.pl/feedback\@pld.org.pl/"
[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 Group(de):      Entwicklung/Libraries
9 Group(es):      Desarrollo/Bibliotecas
10 Group(fr):      Development/Librairies
11 Group(pl):      Programowanie/Biblioteki
12 Group(pt_BR):   Desenvolvimento/Bibliotecas
13 Group(ru):      òÁÚÒÁÂÏÔËÁ/âÉÂÌÉÏÔÅËÉ
14 Group(uk):      òÏÚÒÏÂËÁ/â¦Â̦ÏÔÅËÉ
15 Source0:        http://www.virtualunlimited.com/download/%{name}-%{version}.tar.gz
16 #BuildRequires: autoconf
17 #BuildRequires: automake
18 #BuildRequires: libtool
19 URL:            http://beecrypt.virtualunlimited.com/
20 Buildroot:      %{tmpdir}/%{name}-%{version}-root-%(id -u -n)
21
22 %description
23 BeeCrypt is an open source cryptography library that contains highly
24 optimized C and assembler implementations of many well-known
25 algorithms including Blowfish, MD5, SHA-1, Diffie-Hellman, and
26 ElGamal.
27
28 %description -l pl
29 BeeCrypt jest open sourcow± bibliotek±, która zawiera wysoko
30 zoptymailzowane funkcje w C oraz assemblerze wielu algorytmów
31 szyfrowania m.in.: Blowfish, MD5, SHA-1, Diffie-Hellman oraz ElGamal.
32
33 %package devel
34 Summary:        The BeeCrypt Cryptography Library - development files
35 Summary(pl):    Pliki dla programistów u¿ywaj±cych biblioteki BeeCrypt
36 Group:          Development/Libraries
37 Group(de):      Entwicklung/Libraries
38 Group(es):      Desarrollo/Bibliotecas
39 Group(fr):      Development/Librairies
40 Group(pl):      Programowanie/Biblioteki
41 Group(pt_BR):   Desenvolvimento/Bibliotecas
42 Group(ru):      òÁÚÒÁÂÏÔËÁ/âÉÂÌÉÏÔÅËÉ
43 Group(uk):      òÏÚÒÏÂËÁ/â¦Â̦ÏÔÅËÉ
44 Requires:       %{name} = %{version}
45
46 %description devel
47 The BeeCrypt Cryptography Library - development files.
48
49 %description devel -l pl
50 Biblioteka kryptograficzna BeeCrypt - pliki dla programistów.
51
52 %package static
53 Summary:        The BeeCrypt Cryptography Library - static library
54 Summary(pl):    Biblioteka statyczna BeeCrypt
55 Group:          Development/Libraries
56 Group(de):      Entwicklung/Libraries
57 Group(es):      Desarrollo/Bibliotecas
58 Group(fr):      Development/Librairies
59 Group(pl):      Programowanie/Biblioteki
60 Group(pt_BR):   Desenvolvimento/Bibliotecas
61 Group(ru):      òÁÚÒÁÂÏÔËÁ/âÉÂÌÉÏÔÅËÉ
62 Group(uk):      òÏÚÒÏÂËÁ/â¦Â̦ÏÔÅËÉ
63 Requires:       %{name}-devel = %{version}
64
65 %description static
66 The BeeCrypt Cryptography Library - static library.
67
68 %description static -l pl
69 Biblioteka statyczna BeeCrypt.
70
71 %prep
72 %setup -q
73
74 %build
75 #rm -f missing
76 #libtoolize --copy --force
77 #aclocal
78 #autoconf
79 #automake -a -c
80 %configure2_13 \
81         --enable-static \
82         --%{?debug:en}%{!?debug:dis}able-debug
83 %{__make}
84
85 %install
86 rm -rf $RPM_BUILD_ROOT
87
88 %{__make} install \
89         DESTDIR=$RPM_BUILD_ROOT
90
91 gzip -9nf AUTHORS BENCHMARKS BUGS CONTRIBUTORS ChangeLog NEWS README
92
93 %clean
94 rm -rf $RPM_BUILD_ROOT
95
96 %post   -p /sbin/ldconfig
97 %postun -p /sbin/ldconfig
98
99 %files
100 %defattr(644,root,root,755)
101 %doc BUGS* NEWS* README*
102 %attr(755,root,root) %{_libdir}/lib*.so.*.*
103
104 %files devel
105 %defattr(644,root,root,755)
106 %doc AUTHORS* BENCHMARKS* CONTRIBUTORS* ChangeLog*
107 %attr(755,root,root) %{_libdir}/lib*.la
108 %attr(755,root,root) %{_libdir}/lib*.so
109 %{_includedir}/beecrypt
110
111 %files static
112 %defattr(644,root,root,755)
113 %{_libdir}/lib*.a
This page took 0.063532 seconds and 3 git commands to generate.