blob: e682667c514f0d1fbd93529fd0479fd930041375 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
SRC_URI = "http://linux.duke.edu/projects/metadata/generate/createrepo-${PV}.tar.gz \
file://pathfix.patch;patch=1 "
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
}
|