diff options
author | Michael Lauer <mickey@vanille-media.de> | 2007-08-15 23:03:05 +0000 |
---|---|---|
committer | Michael Lauer <mickey@vanille-media.de> | 2007-08-15 23:03:05 +0000 |
commit | 7b416778337822cb65f4510e8122ff3b0bf2fd16 (patch) | |
tree | 0f4292f8ac52a8619cf76bf14ec62fec6f07f9e5 /packages/python/python-libgmail_0.1.6.bb | |
parent | 17b4e6b62b19a69dda47eee528391b5ac84af67d (diff) | |
parent | 1c712ee28e5fb57b8bcd154ad3453f15972f79c5 (diff) |
merge of '669bdfc0ca89598b9e5d56d8c2a7df2ad055c0b2'
and '91d8f0c9c1e51e85470236a1a95ad046ba02f569'
Diffstat (limited to 'packages/python/python-libgmail_0.1.6.bb')
-rw-r--r-- | packages/python/python-libgmail_0.1.6.bb | 21 |
1 files changed, 21 insertions, 0 deletions
diff --git a/packages/python/python-libgmail_0.1.6.bb b/packages/python/python-libgmail_0.1.6.bb new file mode 100644 index 0000000000..aeb08113ea --- /dev/null +++ b/packages/python/python-libgmail_0.1.6.bb @@ -0,0 +1,21 @@ +DESCRIPTION = "Python Bindings for Google's Gmail Service" +SECTION = "devel/python" +HOMEPAGE = "http://libgmail.sourceforge.net/" +PRIORITY = "optional" +LICENSE = "GPL" +RDEPENDS = "python-core python-netclient python-email python-mime python-pprint python-re python-pickle" +SRCNAME = "libgmail" +PR = "ml0" + +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 +} |