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