Changes of Revision 8
[-] | Added | truecrypt.spec |
x 1
2 +# 3 +# This file and all modifications and additions to the pristine 4 +# package are under the same license as the package itself. 5 +# 6 +# norootforbuild 7 + 8 +Name: truecrypt 9 +Version: 5.1 10 +Release: 1 11 +Obsoletes: truecrypt-kmp =< 4.3a 12 +BuildRoot: %{_tmppath}/%{name}-%{version}-build 13 +BuildRequires: gcc-c++ 14 +BuildRequires: fuse-devel, wxGTK-devel >= 2.8.0 15 +License: TrueCrypt License Version 2.0 16 +Group: System/Libraries 17 +Url: http://www.truecrypt.org 18 +Source: truecrypt-%{version}-source.tar.gz 19 +# Borrowed from gentoo and Fedora:-) 20 +Patch0: %{name}-%{version}-wx.patch 21 +Patch1: truecrypt-5.1-64bit.patch 22 +Patch2: truecrypt-5.1-bool.patch 23 +Patch3: %{name}-%{version}-nogui.patch 24 +Summary: Free open-source disk encryption software for Windows Vista/XP/2000 and Linux 25 + 26 +%description 27 +TrueCrypt is a software system for establishing and maintaining an on-the-fly-encrypted volume (data storage device). 28 + 29 +On-the-fly encryption means that data are automatically encrypted or decrypted right before they are loaded or saved, without any user intervention. 30 +No data stored on an encrypted volume can be read (decrypted) without using the correct password/keyfile(s) or correct encryption keys. 31 + 32 +Entire file system is encrypted (i.e., file names, folder names, contents of every file, and free space). 33 + 34 +Authors: 35 +-------- 36 + - TrueCrypt Foundation <ennead@truecrypt.org> 37 + - Paul Le Roux 38 + 39 +%prep 40 +%setup -n truecrypt-%{version}-source 41 +%patch0 -p1 42 +#%patch1 -p1 43 +#%patch2 -p1 44 + 45 +%build 46 +make 47 + 48 +%install 49 +%{__install} -D -m 0755 Main/truecrypt %{buildroot}%{_bindir}/truecrypt 50 + 51 + 52 +%clean 53 +%{__rm} -fr %{buildroot} 54 + 55 +%files 56 +#%defattr(-, root, root,-) 57 +%attr(0755,root,root) %{_bindir}/truecrypt 58 +%doc Release/Setup\ Files/* Readme.txt 59 + 60 +%changelog -n truecrypt 61 +* Thu Feb 21 2008 - dmacvicar@suse.de 62 +- update to 5.0a 63 +* Sun Sep 23 2007 - dmacvicar@suse.de 64 +- fix build on 10.3 and Factory 65 +* Thu Sep 6 2007 - dmacvicar@suse.de 66 +- Add dependency on the kernel module 67 +* Mon May 21 2007 - dmacvicar@suse.de 68 +- Update to 4.3a 69 +* Mon Aug 21 2006 - dmacvicar@suse.de 70 +- Add patches from Gentoo to compile on 2.6.18 71 +* Mon Jul 3 2006 - dmacvicar@suse.de 72 +- Update to 4.2a 73 +* Thu Jun 01 2006 - dmacvicar@suse.de 74 +- initial package of 4.2 75 |