blob: 422b118ac97952fa647f348e60a74c804749d480 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
DEPENDS = "python-native"
SRC_URI = "http://createrepo.baseurl.org/download/createrepo-${PV}.tar.gz \
file://pathfix.patch;patch=1 "
PR = "r1"
inherit autotools native
S = "${WORKDIR}/createrepo-${PV}"
do_compile_append () {
sed -e 's#exec /usr/share#exec ${datadir}#' -i ${S}/bin/createrepo
sed -e 's#exec /usr/share#exec ${datadir}#' -i ${S}/bin/modifyrepo
sed -e 's#!/usr/bin/python#!${bindir}/python#' -i ${S}/genpkgmetadata.py
sed -e 's#!/usr/bin/python#!${bindir}/python#' -i ${S}/modifyrepo.py
}
|