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