]> git.pld-linux.org Git - packages/ecryptfs-utils.git/blame - ecryptfs-utils.spec
- initial
[packages/ecryptfs-utils.git] / ecryptfs-utils.spec
CommitLineData
020418a4
AM
1Summary: The eCryptfs mount helper and support libraries
2Name: ecryptfs-utils
3Version: 23
4Release: 1
5License: GPL
6Group: Base
7URL: http://ecryptfs.sourceforge.net
8Source0: http://dl.sourceforge.net/ecryptfs/%{name}-%{version}.tar.bz2
9# Source0-md5: 63ed7aa33edf074bb3abdba6271b4370
10BuildRequires: gpgme-devel
11BuildRequires: keyutils-devel
12BuildRequires: libgcrypt-devel
13BuildRequires: openssl-devel
14BuildRequires: pam-devel
15Requires: uname(version) >= 2.6.19
16BuildRoot: %{tmpdir}/%{name}-%{version}-root-%(id -u -n)
17
18%description
19eCryptfs is a stacked cryptographic filesystem that ships in Linux
20kernel versions 2.6.19 and above. This package provides the mount
21helper and supporting libraries to perform key management and mount
22functions.
23
24Install ecryptfs-utils if you would like to mount eCryptfs.
25
26%package devel
27Summary: The eCryptfs userspace development package
28Group: Base
29Requires: %{name} = %{version}-%{release}
30Requires: keyutils-devel
31Requires: openssl-devel
32Requires: pam-devel
33
34%description devel
35Userspace development files for eCryptfs.
36
37%package -n pam-pam_ecryptfs
38Summary: A PAM module - ecryptfs
39Summary(pl.UTF-8): Moduł PAM ecryptfs
40Group: Base
41Requires: %{name} = %{version}-%{release}
42
43%description -n pam-pam_ecryptfs
44A PAM module - ecryptfs.
45
46%description -n pam-pam_ecryptfs -l pl.UTF-8
47Moduł PAM ecryptfs.
48
49%prep
50%setup -q
51
52%build
53%configure \
54 --disable-opencryptoki \
55 --disable-rpath
56
57%{__make}
58
59%install
60rm -rf $RPM_BUILD_ROOT
61
62%{__make} -j1 install \
63 DESTDIR=$RPM_BUILD_ROOT
64
65%post -p /sbin/ldconfig
66%postun -p /sbin/ldconfig
67
68%clean
69rm -rf $RPM_BUILD_ROOT
70
71%files
72%defattr(644,root,root,755)
73%doc README COPYING AUTHORS NEWS THANKS
74%attr(755,root,root) /sbin/mount.ecryptfs
75%attr(755,root,root) %{_bindir}/*
76%attr(755,root,root) %{_libdir}/libecryptfs.so.*
77%{_libdir}/ecryptfs
78%{_mandir}/man7/ecryptfs.7*
79
80%files devel
81%defattr(644,root,root,755)
82%doc doc/design_doc/ecryptfs_design_doc_v0_2.tex doc/design_doc/*.eps
83%attr(755,root,root) %{_libdir}/libecryptfs.so
84%{_includedir}/ecryptfs.h
85
86%files -n pam-pam_ecryptfs
87%defattr(644,root,root,755)
88%attr(755,root,root) /%{_lib}/security/pam_ecryptfs.so
This page took 0.569295 seconds and 4 git commands to generate.