diff options
author | Koen Kooi <koen@openembedded.org> | 2009-02-05 23:10:19 +0100 |
---|---|---|
committer | Koen Kooi <koen@openembedded.org> | 2009-02-05 23:10:19 +0100 |
commit | c950c9fb37d8f14359b8fcb7fd963ba5d9058a1a (patch) | |
tree | 9175c94a87deb83e620d33deb51a73f1705e41c1 /packages/python | |
parent | 097be551be373654825386bc9bae4f5992876e0b (diff) |
divmod.inc: add missing file, thanks Frans!
Diffstat (limited to 'packages/python')
-rw-r--r-- | packages/python/divmod.inc | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/packages/python/divmod.inc b/packages/python/divmod.inc new file mode 100644 index 0000000000..20be1b2e38 --- /dev/null +++ b/packages/python/divmod.inc @@ -0,0 +1,17 @@ +SRC_URI = "http://divmod.org/trac/attachment/wiki/SoftwareReleases/${REALPN}-${PV}.tar.gz?format=raw" + +DEPENDS += "python-twisted-native" + +do_unpack2() { + cd ${WORKDIR} + tar zxvf ${REALPN}-${PV}.tar.gz?format=raw +} + +addtask unpack2 after do_unpack before do_configure + +inherit distutils + +S = "${WORKDIR}/${REALPN}-${PV}" + + + |