blob: a2ef48161dc771e8c7f9c29b51980f125ff47898 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
|
SECTION = "opie/fonts"
PRIORITY = "optional"
MAINTAINER = "Marcin Juszkiewicz <openembedded@hrw.one.pl>"
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
|