blob: a3be987fe90afd7a51abb38aaff540f94fa1f71d (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
|
inherit qmake2
PV = "0.21+0.22rc2"
PR = "r0"
FILES_${PN} =+ "${datadir}"
SRC_URI = "ftp://ftp.osuosl.org/pub/mythtv/myththemes-0.22rc2.tar.bz2"
S = "${WORKDIR}/myththemes-0.22rc2"
do_configure() {
${S}/configure --qmake=qmake2 --sysroot=${STAGING_DIR_HOST} --prefix=${prefix}
}
do_install () {
oe_runmake install INSTALL_ROOT=${D}
}
|