blob: afe9b02adbbfe9f8850d70cb3b445a190240f3f6 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
|
HOMEPAGE = "http://linux.duke.edu/projects/yum/"
SRC_URI = "http://linux.duke.edu/projects/yum/download/3.2/yum-${PV}.tar.gz \
file://hacks.patch;patch=1 \
file://paths.patch;patch=1 \
file://yum-install-recommends.py \
file://extract-postinst.awk"
PR = "r7"
DEPENDS = "rpm-native python-native python-iniparse-native intltool-native \
python-urlgrabber-native yum-metadata-parser-native libxml2-native"
S = "${WORKDIR}/yum-${PV}"
inherit autotools native
do_compile_append () {
sed -e 's#!/usr/bin/python#!${bindir}/python#' -e 's#/usr/share#${datadir}#' -i ${S}/bin/yum.py
sed -e 's#!/usr/bin/python#!${bindir}/python#' -e 's#/usr/share#${datadir}#' -i ${S}/bin/yum-updatesd.py
}
do_install_append () {
install -d ${STAGING_BINDIR}/
install ${WORKDIR}/extract-postinst.awk ${STAGING_BINDIR}/
install ${WORKDIR}/yum-install-recommends.py ${STAGING_BINDIR}/
}
|