blob: 1b110f9d303f8b206d078e82f2d537f2aaf1385f (
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
27
|
DESCRIPTION = "Opie Help Packages - English"
SECTION = "opie/help"
PRIORITY = "optional"
LICENSE = "GPL"
ALLOW_EMPTY = "1"
PACKAGE_ARCH = "all"
PACKAGES += "${PN}"
RDEPENDS_${PN} = "opie-helpbrowser"
S = "${WORKDIR}/html"
do_install() {
install -d ${D}${palmtopdir}/help/en/html/
install -m 0644 ${WORKDIR}/html/*.html ${D}${palmtopdir}/help/en/html/
for d in $(find . -type d | grep -v "CVS\|patch")
do
install -d ${D}${palmtopdir}/help/en/html/$d
install -m 0644 ${WORKDIR}/html/$d/*.html ${D}${palmtopdir}/help/en/html/$d/
done
}
python populate_packages_prepend () {
help_dir = bb.data.expand('${palmtopdir}/help/en/html/', d)
do_split_packages(d, help_dir, file_regex='^(.*)\.html$', output_pattern='opie-%s-help-en', description='Opie Help for %s - English', aux_files_pattern=help_dir + '%s/*')
}
|