]> git.pld-linux.org Git - packages/encfs.git/blob - encfs.spec
- fix build by not calling autotools - i know, it's a bad hack
[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.UTF-8):      Zaszyfrowany system plików dla Linuksa
4 Name:           encfs
5 Version:        1.3.1
6 Release:        1
7 License:        GPL v2
8 Group:          Applications/System
9 Source0:        http://arg0.net/users/vgough/download/%{name}-%{version}-1.tgz
10 # Source0-md5:  c93d6a22aa858db4eb3803170a82274a
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.UTF-8
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.082331 seconds and 3 git commands to generate.