]> git.pld-linux.org Git - packages/encfs.git/blob - encfs.spec
- unified
[packages/encfs.git] / encfs.spec
1 # TODO: duplicated locales (es vs es_ES, fr vs fr_FR)
2 Summary:        Encrypted pass-thru filesystem for Linux
3 Summary(pl):    Zaszyfrowany system plików dla Linuksa
4 Name:           encfs
5 Version:        1.2.2
6 Release:        0.1
7 License:        GPL v2
8 Group:          Applications/System
9 Source0:        http://arg0.net/users/vgough/download/%{name}-%{version}-2.tgz
10 # Source0-md5:  10a7fd97006a2b2f4f0347cd85048204
11 URL:            http://arg0.net/users/vgough/encfs.html
12 BuildRequires:  autoconf
13 BuildRequires:  automake
14 BuildRequires:  libfuse-devel >= 2.2
15 BuildRequires:  libtool
16 BuildRequires:  openssl-devel >= 0.9.7d
17 BuildRequires:  pkgconfig
18 BuildRequires:  rlog-devel
19 Requires:       rlog >= 1.3
20 Buildroot:      %{tmpdir}/%{name}-%{version}-root-%(id -u -n)
21
22 %description
23 EncFS implements an encrypted filesystem in userspace using FUSE. FUSE
24 provides a Linux kernel module which allows virtual filesystems to be
25 written in userspace. EncFS encrypts all data and filenames in the
26 filesystem and passes access through to the underlying filesystem.
27 Similar to CFS except that it does not use NFS.
28
29 %description -l pl
30 EncFS jest implementacj± zaszyfrowanego systemu plików w przestrzeni
31 u¿ytkownika przy u¿yciu FUSE. FUSE dostarcza modu³ j±dra Linuksa
32 pozwalaj±cy na obs³ugê wirtualnych systemów plików w przestrzeni
33 u¿ytkownika. EncFS szyfruje wszystkie dane oraz nazwy plików w
34 systemie plików i przekazuje kontrolê do le¿±cego ni¿ej systemu
35 plików. Jest podobny do CFS-a, ale nie u¿ywa NFS-a.
36
37 %prep
38 %setup -q
39
40 %build
41 %{__libtoolize}
42 %{__aclocal}
43 %{__autoconf}
44 %{__autoheader}
45 %{__automake}
46 %configure \
47         --enable-debug=no
48 %{__make}
49
50 %install
51 rm -rf $RPM_BUILD_ROOT
52
53 %{__make} install \
54         DESTDIR=$RPM_BUILD_ROOT
55
56 # No public headers => no need for devel files
57 rm -f $RPM_BUILD_ROOT%{_libdir}/*.la
58
59 %find_lang %{name}
60
61 %clean
62 rm -rf $RPM_BUILD_ROOT
63
64 %post   -p /sbin/ldconfig
65 %postun -p /sbin/ldconfig
66
67 %files -f %{name}.lang
68 %defattr(644,root,root,755)
69 %doc AUTHORS ChangeLog README
70 %attr(755,root,root) %{_bindir}/encfs*
71 %attr(755,root,root) %{_libdir}/lib*.so.*.*.*
72 %{_mandir}/man1/*.1*
This page took 0.067073 seconds and 3 git commands to generate.