blob: 20be1b2e383be1b7b466bfd1e25ec43ac4d640bf (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
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}"
|