diff options
author | Koen Kooi <koen@openembedded.org> | 2005-12-10 18:58:15 +0000 |
---|---|---|
committer | OpenEmbedded Project <openembedded-devel@lists.openembedded.org> | 2005-12-10 18:58:15 +0000 |
commit | 08ad67e63aadeed08f9f7e9c2be90211fb861c05 (patch) | |
tree | c4e09a49f38091b5f5af967992bc35385d5261f1 /packages/python | |
parent | 2e0f3482b74298592daad6e9045acd6485807ce1 (diff) |
gmailfs: update python-libgmail and DEPENDS
Diffstat (limited to 'packages/python')
-rw-r--r-- | packages/python/python-libgmail_0.1.3.3.bb | 20 |
1 files changed, 20 insertions, 0 deletions
diff --git a/packages/python/python-libgmail_0.1.3.3.bb b/packages/python/python-libgmail_0.1.3.3.bb new file mode 100644 index 0000000000..f7d91f3748 --- /dev/null +++ b/packages/python/python-libgmail_0.1.3.3.bb @@ -0,0 +1,20 @@ +DESCRIPTION = "Python Bindings for Google's Gmail Service" +SECTION = "devel/python" +PRIORITY = "optional" +MAINTAINER = "Michael 'Mickey' Lauer <mickey@Vanille.de>" +LICENSE = "GPL" +RDEPENDS = "python-core python-netclient python-email python-mime python-pprint python-re python-pickle" +SRCNAME = "libgmail" + +SRC_URI = "${SOURCEFORGE_MIRROR}/${SRCNAME}/${SRCNAME}-${PV}.tar.gz" +S = "${WORKDIR}/${SRCNAME}-${PV}" + +inherit distutils-base + +do_install() { + install -d ${D}${libdir}/${PYTHON_DIR} + for file in *.py + do + install -m 0755 ${file} ${D}${libdir}/${PYTHON_DIR} + done +} |