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