dvbapp : TranscodingSetup update
[vuplus_openembedded] / recipes / fuse / gmailfs.inc
1 DESCRIPTION = "GmailFS provides a mountable Linux filesystem which uses your Gmail account as its storage medium."
2 HOMEPAGE = "http://richard.jones.name/google-hacks/gmail-filesystem/gmail-filesystem.html"
3 LICENSE = "GPLv2"
4
5 DEPENDS = "fuse python-libgmail python-fuse"
6 RDEPENDS = "fuse python-libgmail python-fuse python-unixadmin  python-lang python-textutils python-core"
7
8 SRC_URI = "http://richard.jones.name/google-hacks/gmail-filesystem/${PN}-${PV}.tar.gz"
9
10
11 do_install() {
12
13 install -d ${D}${datadir}/gmailfs
14 install -d ${D}${bindir}
15 install -d ${D}${sysconfdir}
16
17 install -m 755 ${S}/gmailfs.py ${D}${datadir}/gmailfs/
18 install -m 755 ${S}/mount.gmailfs ${D}${bindir}
19 install -m 644 ${S}/*.conf ${D}${sysconfdir}
20
21 }
22