blob: 68ab2aceab604dd056bf165cc9411f37fd75a3ec (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
|
require qte-common_${PV}.inc
PR = "r8"
DEFAULT_PREFERENCE = "-1"
EXTRA_OECONF += "-static -thread"
do_stage() {
rm -rf ${STAGING_DIR_HOST}/qt2
install -d ${STAGING_DIR_HOST}/qt2/lib
oe_libinstall -a -C lib libqte-mt ${STAGING_DIR_HOST}/qt2/lib
rm -f include/qxt.h
install -d ${STAGING_DIR_HOST}/qt2/include
cp -pfLR include/* ${STAGING_DIR_HOST}/qt2/include
cp -pPR lib/fonts ${STAGING_DIR_HOST}/qt2/lib/
}
do_install() {
:
}
PACKAGE_ARCH = "${MACHINE_ARCH}"
|