]> git.pld-linux.org Git - packages/aescrypt2.git/blob - aescrypt2.spec
b00d8e8d32a1305b6cd8bdaf83a318883bde959a
[packages/aescrypt2.git] / aescrypt2.spec
1 Summary:        Command line file encryption program that relies on AES-CBC-256
2 Name:           aescrypt2
3 Version:        1.0
4 Release:        1
5 License:        GPL
6 Group:          Applications
7 Source0:        http://www.cr0.net:8040/code/crypto/aes/%{name}-%{version}.tgz
8 # Source0-md5:  90db12e9fa66a43935201da33195a6b9
9 URL:            http://www.cr0.net:8040/code/crypto/aes/
10 BuildRoot:      %{tmpdir}/%{name}-%{version}-root-%(id -u -n)
11
12 %description
13 aescrypt2 is a command line file encryption program that relies on
14 AES-CBC-256 plus HMAC-SHA256. It has been designed to be portable
15 (works on all Unix flavors and Win32) as well as very straightforward
16 to use.
17
18 %prep
19 %setup -q
20
21 %build
22 %{__make} \
23         CC="%__cc"
24
25 %install
26 rm -rf $RPM_BUILD_ROOT
27
28 install -D aescrypt2  $RPM_BUILD_ROOT%{_bindir}/aescrypt2
29
30 %clean
31 rm -rf $RPM_BUILD_ROOT
32
33 %files
34 %defattr(644,root,root,755)
35 %attr(755,root,root) %{_bindir}/*
This page took 0.103976 seconds and 2 git commands to generate.