]> git.pld-linux.org Git - packages/gmailfs.git/blob - gmailfs.spec
- initial
[packages/gmailfs.git] / gmailfs.spec
1 Summary:        provides a mountable Linux filesystem which uses Gmail account as its storage medium.
2 Name:           gmailfs
3 Version:        0.2
4 Release:        0.1
5 Epoch:          0
6 License:        GPLv2
7 Group:          Applications/System
8 Source0:        http://richard.jones.name/google-hacks/gmail-filesystem/%{name}.tar.gz
9 # Source0-md5:  ef36e6964ef679d6f14be04857f9d3f8
10 # Source0-size: 14478
11 URL:            http://richard.jones.name/google-hacks/gmail-filesystem/gmail-filesystem.html
12 Requires:       python
13 Requires:       libfuse >= 1.3
14 Requires:       python-libgmail
15 Requires:       python-fuse
16 # does it need "import profile" for real ?
17 Requires:       python-devel-tools
18 BuildRoot:      %{tmpdir}/%{name}-%{version}-root-%(id -u -n)
19
20 %description
21 GmailFS provides a mountable Linux filesystem which uses your Gmail
22 account as its storage medium. GmailFS is a Python application and
23 uses the FUSE userland filesystem infrastructure to help provide the
24 filesystem, and libgmail to communicate with Gmail.
25
26 %prep
27 %setup -q -n %{name}
28
29 %build
30
31 %install
32 rm -rf $RPM_BUILD_ROOT
33 # create directories if necessary
34 install -d $RPM_BUILD_ROOT%{_bindir}
35 cp gmailfs.py $RPM_BUILD_ROOT%{_bindir}/gmailfs.py
36
37 install -d $RPM_BUILD_ROOT%{_sbindir}
38 cp mount.gmailfs $RPM_BUILD_ROOT%{_sbindir}/mount.gmailfs
39
40 %clean
41 rm -rf $RPM_BUILD_ROOT
42
43 %pre
44
45 %post
46
47 %files
48 %defattr(644,root,root,755)
49 %doc ChangeLog
50 %attr(755,root,root) %{_bindir}/gmailfs.py
51 %attr(755,root,root) %{_sbindir}/mount.gmailfs
This page took 0.04761 seconds and 3 git commands to generate.