]> git.pld-linux.org Git - packages/encfs.git/blob - encfs.spec
- initial, raw, NFY...
[packages/encfs.git] / encfs.spec
1 Summary:        Encrypted pass-thru filesystem for Linux
2 Name:           encfs
3 Version:        1.2.0
4 Release:        0.1
5 License:        GPL v2
6 Group:          System/Filesystems
7 ######          Unknown group!
8 Source0:        http://arg0.net/users/vgough/download/%{name}-%{version}-2.tgz
9 # Source0-md5:  cc653aa2f6ad2f479a3b6d075d6eb43a
10 URL:            http://arg0.net/users/vgough/encfs.html
11 BuildRequires:  libfuse-devel >= 2.2
12 BuildRequires:  openssl-devel >= 0.9.7d
13 Requires:       rlog >= 1.3
14 Buildroot:      %{tmpdir}/%{name}-%{version}-root-%(id -u -n)
15
16 %description
17 EncFS implements an encrypted filesystem in userspace using FUSE. FUSE
18 provides a Linux kernel module which allows virtual filesystems to be
19 written in userspace. EncFS encrypts all data and filenames in the
20 filesystem and passes access through to the underlying filesystem.
21 Similar to CFS except that it does not use NFS.
22
23 %prep
24 %setup -q
25
26 %build
27 %configure \
28         --enable-debug=no
29 %{__make}
30
31 %install
32 rm -rf $RPM_BUILD_ROOT
33
34 %{__make} install \
35         DESTDIR=$RPM_BUILD_ROOT
36
37 %clean
38 rm -rf $RPM_BUILD_ROOT
39
40 %files
41 %defattr(644,root,root,755)
42 %doc AUTHORS ChangeLog README
This page took 0.06666 seconds and 3 git commands to generate.