blob: 3f316cff82d7af0a5b8837c7bc7ced07dad4f8d5 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
|
DESCRIPTION = "Python support for YAML"
HOMEPAGE = "http://www.pyyaml.org"
SECTION = "devel/python"
LICENSE = "MIT"
DEPENDS = "libyaml python-cython-native"
PV = "3.05+svnr${SRCREV}"
PR = "ml0"
SRC_URI = "\
svn://svn.pyyaml.org/pyyaml;module=trunk;proto=http \
file://setup.py \
"
S = "${WORKDIR}/trunk"
inherit distutils
do_configure_prepend() {
# upstream setup.py overcomplicated, use ours
install -m 0644 ${WORKDIR}/setup.py ${S}
}
|