]> git.pld-linux.org Git - packages/aescrypt2.git/blob - aescrypt2.spec
- tabs in preamble
[packages/aescrypt2.git] / aescrypt2.spec
1 Summary:        Command line file encryption program that relies on AES-CBC-256
2 Summary(pl.UTF-8):      Program szyfrujący pliki z linii poleceń używający AES-CBC-256
3 Name:           aescrypt2
4 Version:        1.0
5 Release:        1
6 License:        GPL
7 Group:          Applications
8 Source0:        http://www.cr0.net:8040/code/crypto/aes/%{name}-%{version}.tgz
9 # Source0-md5:  90db12e9fa66a43935201da33195a6b9
10 Patch0:         %{name}-CFLAGS.patch
11 URL:            http://www.cr0.net:8040/code/crypto/aes/
12 BuildRoot:      %{tmpdir}/%{name}-%{version}-root-%(id -u -n)
13
14 %description
15 aescrypt2 is a command line file encryption program that relies on
16 AES-CBC-256 plus HMAC-SHA256. It has been designed to be portable
17 (works on all Unix flavors and Win32) as well as very straightforward
18 to use.
19
20 %description -l pl.UTF-8
21 aescrypt2 to działający z linii poleceń program do szyfrowania plików
22 używający algorytmu AES-CBC-256 oraz HMAC-SHA256. Został
23 zaprojektowany tak, aby być przenośnym (działa na wszystkich rodzajach
24 uniksów oraz Win32), a także prostym w użyciu.
25
26 %prep
27 %setup -q
28 %patch0 -p1
29
30 %build
31 %{__make} \
32         CC="%{__cc}" CFLAGS="%{rpmcflags}"
33
34 %install
35 rm -rf $RPM_BUILD_ROOT
36
37 install -D aescrypt2  $RPM_BUILD_ROOT%{_bindir}/aescrypt2
38
39 %clean
40 rm -rf $RPM_BUILD_ROOT
41
42 %files
43 %defattr(644,root,root,755)
44 %attr(755,root,root) %{_bindir}/*
This page took 0.074633 seconds and 3 git commands to generate.