blob: b3625bfb607c3398e9e8674ff04e531e61254648 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
|
SECTION = "opie/fonts"
PRIORITY = "optional"
LICENSE = "Bitstream Vera"
HOMEPAGE = "http://dejavu.sourceforge.net/wiki/index.php/Main_Page"
PACKAGE_ARCH = "all"
SRC_URI = "http://ewi546.ewi.utwente.nl/mirror/hrw-oe-sources/${PN}-${PV}.tar.bz2"
S = "${WORKDIR}/${PN}"
do_install () {
install -d ${D}${palmqtdir}/lib/fonts/
for i in *.qpf; do
install -m 644 $i ${D}${palmqtdir}/lib/fonts/${i}
done
}
inherit qpf
|