diff options
author | Martin Jansa <Martin.Jansa@gmail.com> | 2009-11-18 09:04:52 +0100 |
---|---|---|
committer | Martin Jansa <Martin.Jansa@gmail.com> | 2009-11-18 09:57:13 +0100 |
commit | 6310a961f23b5e19adef74748104f4b1a9e57ca8 (patch) | |
tree | 4d7679e0b190d6211806d8e03809d855cf5b478c | |
parent | c102a9632dcdf25508bd3f48404ef2c68b6f8b73 (diff) |
pisi: new recipe from SHR
-rw-r--r-- | recipes/openmoko-3rdparty/pisi_0.4.7.bb | 33 |
1 files changed, 33 insertions, 0 deletions
diff --git a/recipes/openmoko-3rdparty/pisi_0.4.7.bb b/recipes/openmoko-3rdparty/pisi_0.4.7.bb new file mode 100644 index 0000000000..b3425d2c2e --- /dev/null +++ b/recipes/openmoko-3rdparty/pisi_0.4.7.bb @@ -0,0 +1,33 @@ +DESCRIPTION = "PISI is synchronizing information" +AUTHOR = "Michael Pilgermann" +PRIORITY = "optional" +LICENSE = "GPL" +HOMEPAGE = "http://projects.openmoko.org/projects/pisi/" +SRCNAME = "pisi" +DEPENDS = "python-native python" +RDEPENDS = "python-vobject python python-pygtk python-pygobject python-pycairo\ + python-gdata python-webdav python-ldap python-epydoc python-core\ + python-dateutil python-sqlite3 python-netserver python-netclient\ + python-misc" + +PACKAGE_ARCH = "all" + +PR = "r0" + +SRC_URI = "http://projects.openmoko.org/frs/download.php/907/pisi-src-${PV}.tar.gz" + +FILES_${PN} += "/opt/pisi \ + ${datadir}/pixmaps \ + ${datadir}/applications \ + /home" +CONFFILES_${PN} += "/home/root/.${PN}/conf.default" + +do_compile() { + ${STAGING_BINDIR_NATIVE}/python ${S}/setup.py build ${D} +} + +do_install() { + ${STAGING_BINDIR_NATIVE}/python ${S}/setup.py install ${D} + rm -rf ${D}/opt/pisi/build/ + rm -rf ${D}/opt/pisi/patches/ +} |